as-editor-h5/babel.config.js

14 lines
275 B
JavaScript
Raw Normal View History

2021-10-27 17:37:58 +08:00
let transformRemoveConsolePlugin = []
if (process.env.NODE_ENV === 'production') {
transformRemoveConsolePlugin = ['transform-remove-console']
}
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
],
plugins: [
...transformRemoveConsolePlugin
]
}