babel.config.js 432 B

12345678910111213141516171819202122232425
  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. 'antdv',
  14. ],
  15. [
  16. 'import',
  17. {
  18. libraryName: '@icon-park/vue-next',
  19. libraryDirectory: 'es/icons',
  20. camel2DashComponentName: false,
  21. },
  22. 'iconPark',
  23. ],
  24. ],
  25. }