babel.config.js 343 B

1234567891011121314151617181920
  1. module.exports = {
  2. presets: [["@vue/app"], ["env", { modules: false }]],
  3. plugins: [
  4. [
  5. "import",
  6. {
  7. libraryName: "vant",
  8. libraryDirectory: "es",
  9. style: true
  10. }
  11. ],
  12. [
  13. "component",
  14. {
  15. libraryName: "element-ui",
  16. styleLibraryName: "theme-chalk"
  17. }
  18. ]
  19. ]
  20. };