babel.config.js 404 B

123456789101112131415161718192021
  1. module.exports = {
  2. presets: [
  3. '@vue/cli-plugin-babel/preset',
  4. ['@babel/preset-env', { modules: false }]
  5. ],
  6. plugins: [ // 自动按需引入
  7. [
  8. 'import', {
  9. libraryName: 'vant',
  10. libraryDirectory: 'es',
  11. style: true
  12. }, 'vant'
  13. ],
  14. [
  15. 'component', {
  16. libraryName: 'element-ui',
  17. styleLibraryName: 'theme-chalk'
  18. }
  19. ]
  20. ]
  21. }