babel.config.js 267 B

123456789101112131415
  1. module.exports = {
  2. presets: [
  3. '@vue/app',
  4. ["@babel/preset-env", { "modules": false }]
  5. ],
  6. "plugins": [
  7. // [
  8. // "component",
  9. // {
  10. // "libraryName": "element-ui",
  11. // "styleLibraryName": "theme-chalk"
  12. // }
  13. // ]
  14. ]
  15. }