@@ -0,0 +1,6 @@
self.addEventListener('install', (e) => {
e.waitUntil(caches.open('v1').then(cache => cache.addAll(['index.html'])));
});
self.addEventListener('fetch', (e) => {
e.respondWith(caches.match(e.request).then(res => res || fetch(e.request)));
The note is not visible to the blocked user.