babel.config.js 552 B

12345678910111213141516171819202122232425262728
  1. const IS_PROD = ['production', 'prod'].includes(process.env.NODE_ENV)
  2. const plugins = []
  3. if (IS_PROD) {
  4. plugins.push('transform-remove-console')
  5. }
  6. module.exports = {
  7. presets: [
  8. '@vue/app',
  9. [
  10. '@babel/preset-env',
  11. {
  12. 'useBuiltIns': 'entry'
  13. }
  14. ]
  15. ],
  16. plugins
  17. // if your use import on Demand, Use this code
  18. // ,
  19. // plugins: [
  20. // [ 'import', {
  21. // 'libraryName': 'ant-design-vue',
  22. // 'libraryDirectory': 'es',
  23. // 'style': true // `style: true` 会加载 less 文件
  24. // } ]
  25. // ]
  26. }