diff --git a/app/web/src/sworker.ts b/app/web/src/sworker.ts index cf51a7e9..2f92d41b 100644 --- a/app/web/src/sworker.ts +++ b/app/web/src/sworker.ts @@ -49,6 +49,8 @@ addEventListener("fetch", async (evt) => { const url = new URL(e.request.url); + if (url.pathname.startsWith("_proxy")) return; + if (g.router) { const found = g.router.lookup(url.pathname); if (found) {