beelink/babel.config.js

12 lines
209 B
JavaScript
Raw Normal View History

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