babel.config.js 390 B

1234567891011121314151617181920
  1. module.exports = {
  2. presets: [
  3. '@vue/app',
  4. [
  5. '@babel/preset-env',
  6. {
  7. 'useBuiltIns': 'entry'
  8. }
  9. ]
  10. ]
  11. // if your use import on Demand, Use this code
  12. // ,
  13. // plugins: [
  14. // [ 'import', {
  15. // 'libraryName': 'ant-design-vue',
  16. // 'libraryDirectory': 'es',
  17. // 'style': true // `style: true` 会加载 less 文件
  18. // } ]
  19. // ]
  20. }