welfare-admin/babel.config.js

29 lines
567 B
JavaScript
Raw Normal View History

2021-08-11 15:44:50 +08:00
const IS_PROD = ['production', 'prod'].includes(process.env.NODE_ENV)
const plugins = []
if (IS_PROD) {
plugins.push('transform-remove-console')
}
// lazy load ant-design-vue
// if your use import on Demand, Use this code
plugins.push(['import', {
'libraryName': 'ant-design-vue',
'libraryDirectory': 'es',
'style': true // `style: true` 会加载 less 文件
}])
2021-08-09 17:28:48 +08:00
module.exports = {
presets: [
2021-08-11 15:44:50 +08:00
'@vue/cli-plugin-babel/preset',
[
'@babel/preset-env',
{
'useBuiltIns': 'entry',
'corejs': 3
}
]
],
plugins
2021-08-09 17:28:48 +08:00
}