mirror of
https://github.com/1024-lab/smart-admin.git
synced 2026-07-17 08:56:07 +00:00
17 lines
378 B
JavaScript
17 lines
378 B
JavaScript
|
|
module.exports = {
|
|
presets: [['@vue/cli-plugin-babel/preset', {useBuiltIns: 'usage', corejs: 3}]],
|
|
plugins:[
|
|
// vant-ui 按需引入,详情:https://github.com/ElementUI/babel-plugin-component
|
|
// [
|
|
// 'import',
|
|
// {
|
|
// libraryName: 'vant',
|
|
// libraryDirectory: 'es',
|
|
// style: true
|
|
// },
|
|
// 'vant'
|
|
// ]
|
|
]
|
|
};
|