babel.config.js 231 B

123456789101112131415
  1. module.exports = {
  2. presets: [
  3. '@vue/cli-plugin-babel/preset',
  4. ],
  5. plugins: [
  6. [
  7. 'import',
  8. {
  9. libraryName: 'ant-design-vue',
  10. libraryDirectory: 'es',
  11. style: true,
  12. },
  13. ],
  14. ],
  15. }