方式一
在package.json
文件中,使用--debug
模式编译。此时终端编译可以看到代理地址,但是看到的只是域名,还不够全。
"scripts": {
"dev": "vite --mode development --debug",
},
方式二
使用 bypass
函数,获取代理结果,设置响应头(请求头设置未生效,也可以在响应头上看)
bypass(req, res, options: any) {
const proxyURL = options.target + options.rewrite(req.url);
console.log('proxyURL', proxyURL);
req.headers['x-req-proxyURL'] = proxyURL; // 设置未生效
res.setHeader('x-req-proxyURL', proxyURL); // 设置响应头可以看到
},
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。