config/index.js文件配置代理,找到proxyTable字段
proxyTable: {
'/api': { // 请求的代称,写在Axios里的BaseUrl
target: 'http://localhost:8083', // 真实请求URl
changeOrigin: true, // 允许跨域
pathRewrite: { // 替换,通配/api的替换成/
'^/api': '/'
}
}