We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7abb79 commit 3d244f8Copy full SHA for 3d244f8
src/node/routes/pathProxy.ts
@@ -11,7 +11,7 @@ const getProxyTarget = (req: Request, passthroughPath?: boolean): string => {
11
return `http://0.0.0.0:${req.params.port}/${req.originalUrl}`
12
}
13
const query = qs.stringify(req.query)
14
- return encodeURI(`http://0.0.0.0:${req.params.port}${req.params[0] || ""}${query ? `?${query}` : ""}`);
+ return encodeURI(`http://0.0.0.0:${req.params.port}${req.params[0] || ""}${query ? `?${query}` : ""}`)
15
16
17
export async function proxy(
0 commit comments