vue-cli3.0 vue.config.js配置webpack反向代理,在vue.config.js里添加下面配置
devServer: {
open: true,//配置自动启动浏览器
host: 'localhost',
port: 8088,
https: false,
hotOnly: false,
proxy: {
"/service": {//名称
target: "http://xxx",//需要代理到哪里去
changeOrigin: true,
ws: true,
pathRewrite: {
'^/service': ''
}
},
}
},
使用如下:
运行一下,就可以在本地跑起来了~~~~
网友评论