upload UI source code

This commit is contained in:
unknown
2022-06-24 17:11:23 +08:00
parent 8165dfcc7b
commit 8565e1bb59
537 changed files with 47199 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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'
]
}