proxy: {
'/api': {
target: 'http://192.168.3.47:1228',
changeOrigin: true,
onProxyReq: function (proxyReq, req, res) {
console.log(
'[proxy]: ' + proxyReq.getHeader('origin') + proxyReq.path,
' => ',
proxyReq.getHeader('host') + proxyReq.path,
);
},
},
},
标签:Vue,cli,proxyReq,地址,proxy,path
From: https://www.cnblogs.com/jaycethanks/p/17469123.html