PPTist/babel.config.js

26 lines
432 B
JavaScript
Raw Normal View History

2020-12-10 19:14:45 +08:00
module.exports = {
presets: [
2020-12-11 10:47:53 +08:00
'@vue/cli-plugin-babel/preset',
2020-12-10 22:40:15 +08:00
],
plugins: [
[
'import',
{
libraryName: 'ant-design-vue',
libraryDirectory: 'es',
style: true,
2020-12-11 10:47:53 +08:00
},
2021-01-16 10:49:20 +08:00
'antdv',
],
[
'import',
{
libraryName: '@icon-park/vue-next',
libraryDirectory: 'es/icons',
camel2DashComponentName: false,
},
'iconPark',
2020-12-11 10:47:53 +08:00
],
],
2020-12-10 19:14:45 +08:00
}