例如 http://localhost/client/abc.do 重写为 http://abc.com/abc.do 我想将client路径下的请求都转发到abc.com上
<pre>
devServer: {
proxy: {
pathRewrite : function (path,req){
return
'http://serverProxy.com'+path.replace(/\/client(.*)/,function($1,$2){return $2});
}
}
}
</pre>
这么写好像不行
相关分类