当前位置:主页 > 网页前端 > vue >

详解vue-cli构建项目反向代理配置

时间:2021-02-21 14:54:35 | 栏目:vue | 点击:

本文介绍了vue-cli构建项目反向代理配置,分享给大家,具体如下:

proxyTable: {//配置请求代理
'/dlsys':{
target:'http://192.168.16.209:81',
changeOrigin:true,
pathRewrith:{
'^/dlsys':
'/dlsys'
}
},
'/dlapi':{
target:'http://192.168.16.209:81',
changeOrigin:true,
pathRewrith:{
'^/dlapi':
'/dlapi'
}
},
'/dlbiz':{
target:'http://192.168.16.211:80',
changeOrigin:true,
pathRewrith:{
'^/dlbiz':
'/dlbiz'
}
}
},

您可能感兴趣的文章:

相关文章