This commit is contained in:
zhangzq
2024-02-02 17:54:37 +08:00
parent a2454f25fa
commit ce7403b682
492 changed files with 27308 additions and 35035 deletions

View File

@@ -0,0 +1,9 @@
const plugins = ['@vue/babel-plugin-transform-vue-jsx']
// 生产环境移除console
if (process.env.NODE_ENV === 'production') {
plugins.push('transform-remove-console')
}
module.exports = {
plugins: plugins,
presets: [['@vue/app', { useBuiltIns: 'entry' }]]
}