后端为node,前端vue,本地请求调试时前端端口为8080,后端接口是5007,出现跨域问题
然后前端配置代理
module.exports = {
devServer: {
host: 'localhost',
proxy: {
'/api': {
target: 'http://localhost:5007',
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
}
},
}
.env.development
VUE_APP_URL = http://localhost:5007
更改为
VUE_APP_URL = /api
但请求出现错误,查看请求地址,localhost后的端口号消失
求大佬看看 哪里出问题了
VUE_APP_URL = 'http://localhost:5008/api'