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': ''}}}},// 其它配置}
