Spaces:
Running
Running
File size: 301 Bytes
f01295f | 1 2 3 4 5 6 7 8 9 | const CACHE = 'vigilante-v1';
const ARCHIVOS = ['/app', '/familiar'];
self.addEventListener('install', e => {
e.waitUntil(caches.open(CACHE).then(cache => cache.addAll(ARCHIVOS)));
});
self.addEventListener('fetch', e => {
e.respondWith(fetch(e.request).catch(() => caches.match(e.request)));
});
|