babel.config.js 347 B

1234567891011121314151617181920
  1. module.exports = {
  2. presets: [
  3. "@vue/app",
  4. // 兼容配置
  5. [
  6. "@babel/preset-env",
  7. {
  8. useBuiltIns: "entry"
  9. }
  10. ]
  11. ],
  12. // 按需加载
  13. plugins: [
  14. "@babel/plugin-proposal-class-properties",
  15. [
  16. "import",
  17. { libraryName: "ant-design-vue", libraryDirectory: "es", style: true }
  18. ]
  19. ]
  20. };