Keep cached cycles active in background tabs

This commit is contained in:
Theodore Song
2026-08-18 08:03:29 -04:00
parent e4e27c885a
commit b906e9654d
4 changed files with 33 additions and 3 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
const CACHE_NAME = "polymarket-arena-v35";
const APP_SHELL = ["/", "/index.html", "/personal.html"];
const APP_SHELL = ["/", "/index.html", "/personal.html", "/cycle-worker.js"];
self.addEventListener("install", event => {
event.waitUntil(caches.open(CACHE_NAME).then(cache => cache.addAll(APP_SHELL)).then(() => self.skipWaiting()));