Skip to content

Commit

Permalink
Fix service worker proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
zefhemel committed Feb 10, 2025
1 parent 93696df commit 8e8acbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/service_worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ self.addEventListener("fetch", (event: any) => {
pathname === "/.auth" ||
pathname === "/.logout" ||
pathname === "/index.json" ||
pathname.startsWith("!")
pathname.startsWith("/!")
) {
return fetch(request);
} else if (looksLikePathWithExtension(pathname)) {
Expand Down

0 comments on commit 8e8acbb

Please sign in to comment.