vue.config.js
const vueConfig = {
devServer: {
// 后端服务端口
port: 8000,
// 公共请求头
headers: { 'Access-Control-Allow-Origin': '*' },
// 代理服务器配置
proxy: {
'/api': {
target: 'http://172.17.88.5:28000/zentao',
secure: false,
ws: false,
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
}
},
// 其它配置
}