加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vue.config.js 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
航小航 提交于 2024-01-18 13:46 . '1'
module.exports = {
productionSourceMap: false,
publicPath: process.env.NODE_ENV === 'production' ? './' : '/',
lintOnSave: false,
devServer: {
open: JSON.parse(process.env.VUE_APP_OPEN), // 自动打开浏览器
host: '0.0.0.0', // 真机模拟,使用
port: process.env.VUE_APP_PORT, // 前台代理端口号
https: false, // https: {type: Booleam}
hotOnly: false, // 热更新
proxy: {
// 设置代理 (hpc)
'/auth-api': {
target: 'http://192.168.10.29:30000/service-auth',
ws: true,
changeOrigin: true,
pathRewrite: {
'^/auth-api': '',
},
},
'/platform-api': {
target: 'http://192.168.10.29:30000/service-platform',
ws: true,
changeOrigin: true,
pathRewrite: {
'^/platform-api': '',
},
},
'/activiti-api': {
target: 'http://192.168.10.29:30000/service-activiti',
ws: true,
changeOrigin: true,
pathRewrite: {
'^/activiti-api': '',
},
},
// 设置代理 (阿里云)
'/aliyun-api': {
target: 'http://192.168.10.29:20000/platform',
ws: true,
changeOrigin: true,
pathRewrite: {
'^/aliyun-api': '',
},
},
},
},
chainWebpack(config) {
// 移除打包后 index.html 所有打包好的文件都预加载行为
config.plugins.delete('preload');
config.plugins.delete('prefetch');
},
css: {
extract: { ignoreOrder: true },
},
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化