代码拉取完成,页面将自动刷新
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 },
},
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。