4 Star 0 Fork 0

zgh0914/sscweb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vue.config.js 2.05 KB
一键复制 编辑 原始数据 按行查看 历史
赵晨曦 提交于 2022-05-19 20:12 . 5.19-5
const Timestamp= new Date().getTime()
module.exports = {
publicPath: './',
outputDir: 'dist',
assetsDir: 'static',
productionSourceMap:false,
lintOnSave: true,
runtimeCompiler: true, //关键点在这
devServer: {
proxy: {
// '/sscweb': {
// target: 'http://localhost:8001', //API服务器的地址
// secure: false,
// changeOrigin: true, // 是否跨域,虚拟的站点需要更管origin
// pathRewrite: {
// '^/sscweb':''
// }
// },
// '/pay': {
// target: 'http://localhost:8401', //API服务器的地址
// secure: false,
// changeOrigin: true, // 是否跨域,虚拟的站点需要更管origin
// pathRewrite: {
// '^/pay':''
// }
// },
'/pay': {
target: 'http://172.16.1.254:8400', //API服务器的地址
secure: false,
changeOrigin: true, // 是否跨域,虚拟的站点需要更管origin
pathRewrite: {
'^/pay':''
}
},
'/sscweb': {
target: 'http://172.16.1.254:8000', //API服务器的地址
secure: false,
changeOrigin: true, // 是否跨域,虚拟的站点需要更管origin
pathRewrite: {
'^/sscweb':''
}
},
}
},
configureWebpack: { // js 配置
output: { // 输出重构 打包编译后的 文件名称
filename: `static/js/[name].${process.env.VUE_APP_Version}.${Timestamp}.js`,
chunkFilename: `static/js/[name].${process.env.VUE_APP_Version}.${Timestamp}.js`
},
},
css: { // css 配置
extract: {
// 修改打包后css文件名
filename: `css/[name].${Timestamp}.css`,
chunkFilename: `css/[name].${Timestamp}.css`
}
},
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zgh0914/sscweb.git
[email protected]:zgh0914/sscweb.git
zgh0914
sscweb
sscweb
master

搜索帮助