2 Star 0 Fork 0

taiyunhang/shengdajxsz

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
taiyunhang 提交于 2019-01-15 15:12 . '网点查询'
/*
* @Author: taiyunhang
* @Date: 2018-12-12 09:49:25
* */
const proxyPath = require('./src/env/proxy');
// const debug = process.env.NODE_ENV !== 'production';
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
module.exports = {
// eslint-loader 是否在保存的时候检查
lintOnSave: true,
devServer: {
host: '0.0.0.0',
port: 3000,
open: true,
openPage: '/ShengDaPACFX?sourceType=pacq',
proxy: {
[proxyPath]: {
target: 'http://192.168.1.37:18080',
// target: 'http://192.168.2.176:8080/',
// target: 'http://192.168.2.231:8080',
changeOrigin: true,
ws: true
/* pathRewrite: {
'^/api': ''
} */
}
}
},
configureWebpack: {
optimization: {
minimizer: [
new UglifyJsPlugin({
uglifyOptions: {
compress: {
warnings: false,
drop_console: true, // console
drop_debugger: false,
pure_funcs: ['console.log'] // 移除console
}
}
})
]
}
},
// 生产环境是否生成 sourceMap 文件
productionSourceMap: true
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/taiyunhang/shengdajxsz.git
git@gitee.com:taiyunhang/shengdajxsz.git
taiyunhang
shengdajxsz
shengdajxsz
master

搜索帮助