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.
24 lines
485 B
24 lines
485 B
// 项目开发阶段用到的babel插件
|
|
const prodPlugins = []
|
|
if (process.env.NODE_ENV === 'production') {
|
|
prodPlugins.push('transform-remove-console')
|
|
}
|
|
|
|
module.exports = {
|
|
'presets': [
|
|
'@vue/cli-plugin-babel/preset'
|
|
],
|
|
'plugins': [
|
|
[
|
|
'component',
|
|
{
|
|
'libraryName': 'element-ui',
|
|
'styleLibraryName': 'theme-chalk'
|
|
}
|
|
],
|
|
// 发布产品时候的插件数组
|
|
...prodPlugins,
|
|
'@babel/plugin-syntax-dynamic-import'
|
|
]
|
|
}
|