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.
22 lines
474 B
22 lines
474 B
// 获取 VUE_APP_ENV 非 NODE_ENV,测试环境依然 console
|
|
const IS_PROD = ['production', 'prod'].includes(process.env.VUE_APP_ENV)
|
|
const plugins = [
|
|
[
|
|
'import',
|
|
{
|
|
libraryName: 'vant',
|
|
libraryDirectory: 'es',
|
|
style: true
|
|
},
|
|
'vant'
|
|
]
|
|
]
|
|
// 去除 console.log
|
|
if (IS_PROD) {
|
|
plugins.push('transform-remove-console')
|
|
}
|
|
|
|
module.exports = {
|
|
presets: [['@vue/cli-plugin-babel/preset', {useBuiltIns: 'usage', corejs: 3}]],
|
|
plugins
|
|
}
|
|
|