babel.config.js 364 B

123456789101112131415161718192021
  1. module.exports = {
  2. presets: ["@vue/cli-plugin-babel/preset"],
  3. plugins: [
  4. [
  5. "import",
  6. {
  7. libraryName: "vant",
  8. libraryDirectory: "es",
  9. style: true,
  10. },
  11. "vant",
  12. ],
  13. [
  14. "@babel/plugin-transform-react-jsx",
  15. {
  16. runtime: "automatic",
  17. importSource: "@antv/f2",
  18. },
  19. ],
  20. ],
  21. };