module.exports = {
devServer: {
host: 'localhost',
port: 8082,
disableHostCheck: true,
proxy: {
'/api': { //所有带/api/xxx 代理到target
target: 'http://localhost:8989/',//后端地址
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
}
}
}
Vue项目配置跨域访问和Proxy代理设置
最新推荐文章于 2025-04-01 07:30:00 发布