Service worker not over HTTP

This commit is contained in:
Zef Hemel
2022-05-04 16:09:39 +02:00
parent 092cef08dd
commit a6eff1e371
2 changed files with 13 additions and 7 deletions
+2 -2
View File
@@ -2,11 +2,11 @@ import { manifest, version } from "@parcel/service-worker";
async function install() {
const cache = await caches.open(version);
console.log("Installing", manifest, "version", version);
// console.log("Installing", manifest, "version", version);
await cache.addAll(manifest);
// @ts-ignore
self.skipWaiting(); // This automatically enables the service worker, preventing from caching stuff forever if there's a page open
console.log("Installed");
// console.log("Installed");
}
//@ts-ignore