You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
390 B
21 lines
390 B
module.exports = {
|
|
presets: [
|
|
'@vue/app',
|
|
[
|
|
'@babel/preset-env',
|
|
{
|
|
'useBuiltIns': 'entry'
|
|
}
|
|
]
|
|
]
|
|
// if your use import on Demand, Use this code
|
|
// ,
|
|
// plugins: [
|
|
// [ 'import', {
|
|
// 'libraryName': 'ant-design-vue',
|
|
// 'libraryDirectory': 'es',
|
|
// 'style': true // `style: true` 会加载 less 文件
|
|
// } ]
|
|
// ]
|
|
}
|