前端请求跨域问题
第一步:写代理
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://localhost:8081/api', // 目标后端地址
changeOrigin: true, // 修改源
pathRewrite: { '^/api': '' }, // 重写路径
},
},
},
};
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://localhost:8081/api', // 目标后端地址
changeOrigin: true, // 修改源
pathRewrite: { '^/api': '' }, // 重写路径
},
},
},
};