get rid of cache

This commit is contained in:
bobsfriend12 2023-07-29 16:05:27 -05:00
parent 86960b7c9f
commit e76ba70d88

View File

@ -15,12 +15,6 @@ self.addEventListener("message", (event) => {
} }
}); });
self.addEventListener("install", async (event) => {
event.waitUntil(
caches.open(CACHE).then((cache) => cache.add(offlineFallbackPage))
);
});
if (workbox.navigationPreload.isSupported()) { if (workbox.navigationPreload.isSupported()) {
workbox.navigationPreload.enable(); workbox.navigationPreload.enable();
} }