1 Star 0 Fork 1.1K

had1128 / vue-form-making

forked from GavinZhulei / vue-form-making 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vue.config.js 548 Bytes
一键复制 编辑 原始数据 按行查看 历史
GavinZhulei 提交于 2019-06-03 14:18 . 整理package.json
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,
})
]
if (process.env.NODE_ENV !== 'development') {
config.plugins = [...config.plugins, ...plugins]
}
}
}
JavaScript
1
https://gitee.com/had1128/vue-form-making.git
git@gitee.com:had1128/vue-form-making.git
had1128
vue-form-making
vue-form-making
master

搜索帮助