```js const options = { target: 'https://passport.xxx.com', changeOrigin: true, headers: { referer: '', host: 'ta.xxx.com' }, hostRewrite: 'ta.xxx.com', refererRewrite: 'http://ta.xxx.com', pathRewrite: { '^/v2/api': '/api' }, onProxyReq(proxyReq, req, res) { proxyReq.setHeader('referer', '') console.log(req) } ``` it does't work. could you help me