webpack devServer怎么重写请求路径例如 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>这么写好像不行
添加回答
举报
0/150
提交
取消