babel.config.js 284 B

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