Spaces:
Paused
Paused
File size: 415 Bytes
23004ee |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
self.addEventListener("install", (e) => {
e.waitUntil(
caches.open("taskbot-cache").then((cache) => {
return cache.addAll(["/", "/static/style.css", "/static/script.js"]);
})
);
});
self.addEventListener("fetch", (e) => {
e.respondWith(
caches.match(e.request).then((response) => {
return response || fetch(e.request);
})
);
}); |