I have an endpoint /endpoint which I want to proxy to, however all my requests get redirected to /endpoint/ which doesn't exist.
It is set up like so:
app.use('/endpoint', proxy('http://somehost.com/endpoint'));
The error seems to be somewhere in slashJoin in index.js.
I have an endpoint
/endpointwhich I want to proxy to, however all my requests get redirected to/endpoint/which doesn't exist.It is set up like so:
app.use('/endpoint', proxy('http://somehost.com/endpoint'));The error seems to be somewhere in
slashJoininindex.js.