diff options
| author | 2025-10-18 23:08:41 +0200 | |
|---|---|---|
| committer | 2025-10-18 23:08:41 +0200 | |
| commit | 12e8ddb91b17a4648dbda1a041493a2a6963b3aa (patch) | |
| tree | dfc4a6b609157d280aa3b45044ed654839aedc70 | |
| parent | 7fdef99eaf6ad3c0c16bacac35b3144fa373e54f (diff) | |
| -rw-r--r-- | web/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web/index.html b/web/index.html index 051cc94..b50d3cb 100644 --- a/web/index.html +++ b/web/index.html @@ -42,12 +42,12 @@ const precachedResources = [ ]; async function precache() { - const cache = await caches.open('upub-assets-cache'); - return cache.addAll(precachedResources); + const cache = await caches.open('upub-assets-cache'); + return cache.addAll(precachedResources); } self.addEventListener("install", (event) => { - event.waitUntil(precache()); + event.waitUntil(precache()); }); </script> </html> |
