mirror of
https://github.com/rubickCenter/rubick
synced 2025-06-07 19:14:11 +08:00
24 lines
462 B
JavaScript
24 lines
462 B
JavaScript
module.exports = {
|
|
presets: ['@vue/cli-plugin-babel/preset'],
|
|
plugins: [
|
|
[
|
|
'import',
|
|
{
|
|
libraryName: 'ant-design-vue',
|
|
libraryDirectory: 'es',
|
|
style: 'css', // or 'css'
|
|
},
|
|
'ant-design-vue',
|
|
],
|
|
[
|
|
'import',
|
|
{
|
|
libraryName: '@ant-design/icons-vue',
|
|
libraryDirectory: 'lib/icons',
|
|
camel2DashComponentName: false,
|
|
},
|
|
'@ant-design/icons-vue',
|
|
],
|
|
],
|
|
};
|