1 Star 0 Fork 1.1K

菁雅阁 / vue-form-making

forked from GavinZhulei / vue-form-making 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vue.config.js 638 Bytes
一键复制 编辑 原始数据 按行查看 历史
GavinZhulei 提交于 2023-12-27 21:29 . fixed build bug
const TerserPlugin = require('terser-webpack-plugin')
module.exports = {
productionSourceMap: false,
publicPath: './',
configureWebpack: config => {
let plugins = [
new TerserPlugin({
terserOptions: {
compress: {
warnings: false,
drop_debugger: false,
drop_console: true,
},
},
sourceMap: false,
parallel: true,
extractComments: false,
})
]
if (process.env.NODE_ENV !== 'development') {
config.plugins = [...config.plugins, ...plugins]
config.performance = {
hints: false
}
}
}
}
JavaScript
1
https://gitee.com/finger007/vue-form-making.git
git@gitee.com:finger007/vue-form-making.git
finger007
vue-form-making
vue-form-making
master

搜索帮助