17 Star 162 Fork 89

zjm16 / zjmzxfzhl-bpmn

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vue.config.js 736 Bytes
一键复制 编辑 原始数据 按行查看 历史
zjm16 提交于 2021-06-16 22:04 . zjmzxfzhl-bpmn2.0
const TerserPlugin = require("terser-webpack-plugin")
module.exports = {
publicPath: '/zjmzxfzhl-doc/zjmzxfzhl-bpmn/',
outputDir: 'dist',
assetsDir: 'static',
lintOnSave: false,
productionSourceMap: false,
devServer: {
port: 8899
},
configureWebpack: config => {
// 生产环境相关配置
if (process.env.NODE_ENV === "production") {
config.externals = {
vue: "Vue",
"element-ui": "ELEMENT",
}
config.plugins.push(new TerserPlugin({
terserOptions: {
compress: {
warnings: false,
drop_debugger: false,
drop_console: true,
},
},
sourceMap: false,
parallel: true,
}));
}
}
}
JavaScript
1
https://gitee.com/zjm16/zjmzxfzhl-bpmn.git
git@gitee.com:zjm16/zjmzxfzhl-bpmn.git
zjm16
zjmzxfzhl-bpmn
zjmzxfzhl-bpmn
master

搜索帮助