I use the following code and it works
proxy.web(req, res, {
changeOrigin: true,
target: 'http://' + hostname + ':' + port,
ws: true
});
But when I try the following I got error,why?
proxy.web(req, res, {
target: {
host: 'http://' + hostname,
port: port
},
});