12345678910111213141516171819202122232425262728 |
- const prodPlugin = []
- if (process.env.NODE_ENV === 'production') {
- // plugin.push('transform-remove-console')
- prodPlugin.push([
- 'transform-remove-console',
- {
- // 保留 console.error 与 console.warn
- exclude: ['error', 'warn']
- }
- ])
- }
- // module.exports = {
- // presets: [
- // '@vue/cli-plugin-babel/preset'
- // ],
- // plugins: [
- // ['component', {
- // libraryName: 'element-ui',
- // libraryDirectory: 'theme-chalk',
- // }],
- // ...plugin
- // ]
- // }
- module.exports = {
- plugins: [
- ...prodPlugin
- ]
- }
|