From 6232e3d16c225b113a2534d3a27e992984638ee8 Mon Sep 17 00:00:00 2001 From: Rizky Date: Fri, 21 Jun 2024 13:03:21 +0700 Subject: [PATCH] fix --- app/web/src/sworker.ts | 2 ++ 1 file changed, 2 insertions(+) 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) {