beelink/babel.config.js

12 lines
209 B
JavaScript
Raw Normal View History

2020-11-11 10:50:04 +08:00
let build = []
if (process.env.NODE_ENV === 'production') {
2020-11-30 13:58:40 +08:00
// build = ['transform-remove-console']
build = []
2020-11-11 10:50:04 +08:00
}
2020-09-24 10:26:22 +08:00
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
2020-11-11 10:50:04 +08:00
],
2020-11-30 14:15:11 +08:00
plugins: []
2020-09-24 10:26:22 +08:00
}