babel.config.js 485 B

123456789101112131415161718192021222324
  1. module.exports = {
  2. presets: [["@babel/preset-env", { modules: false }]],
  3. plugins: [
  4. [
  5. "import",
  6. {
  7. libraryName: "vant",
  8. libraryDirectory: "es",
  9. // 指定样式路径
  10. // style: name => `${name}/style/less`
  11. style: true,
  12. },
  13. "vant",
  14. ],
  15. ["@babel/plugin-syntax-dynamic-import"],
  16. [
  17. "component",
  18. {
  19. libraryName: "element-ui",
  20. styleLibraryName: "theme-chalk",
  21. },
  22. ],
  23. ],
  24. };