mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-05 21:33:40 +08:00
16 lines
371 B
JavaScript
16 lines
371 B
JavaScript
|
self.addEventListener("install", function (event) {
|
||
|
event.waitUntil(
|
||
|
caches.open("sw-cache").then(function (cache) {
|
||
|
return cache.add("index.html");
|
||
|
})
|
||
|
);
|
||
|
});
|
||
|
|
||
|
self.addEventListener("fetch", function (event) {
|
||
|
event.respondWith(
|
||
|
caches.match(event.request).then(function (response) {
|
||
|
return response || fetch(event.request);
|
||
|
})
|
||
|
);
|
||
|
});
|