babel.config.js 236 B

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