babel.config.js 826 B

123456789101112131415161718192021222324252627282930313233
  1. const plugins = []
  2. // if your use import on Demand, Use this code,but can't use the cdn together
  3. // plugins.push(
  4. // [ 'import', {
  5. // 'libraryName': 'ant-design-vue',
  6. // 'libraryDirectory': 'es',
  7. // 'style': true // `style: true` 会加载 less 文件
  8. // } ]
  9. // )
  10. if (['production', 'prod'].includes(process.env.NODE_ENV)) {
  11. plugins.push('transform-remove-console')
  12. //plugins.push( [
  13. // "@babel/plugin-transform-modules-systemjs",
  14. // {
  15. // outputs SystemJS.register(...)
  16. // "systemGlobal": "SystemJS"
  17. // }
  18. //])
  19. }
  20. module.exports = {
  21. presets: [
  22. '@vue/app',
  23. [
  24. '@babel/preset-env',
  25. {
  26. 'corejs':'3',
  27. 'useBuiltIns': 'entry'
  28. }
  29. ]
  30. ],
  31. plugins: plugins
  32. }