|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const CACHE_NAME = 'maker-station-v1'; |
|
|
const ASSETS = [ |
|
|
'/', |
|
|
'/static/css/style.css', |
|
|
'/static/js/script.js', |
|
|
'/static/assets/favicon.png', |
|
|
'/static/assets/icon192x192.png' |
|
|
]; |
|
|
|
|
|
|
|
|
self.addEventListener('install', (event) => { |
|
|
event.waitUntil( |
|
|
caches.open(CACHE_NAME).then((cache) => { |
|
|
console.log('DEBUG: Precargando archivos en caché'); |
|
|
return cache.addAll(ASSETS); |
|
|
}) |
|
|
); |
|
|
}); |
|
|
|
|
|
|
|
|
self.addEventListener('fetch', (event) => { |
|
|
event.respondWith( |
|
|
caches.match(event.request).then((response) => { |
|
|
|
|
|
return response || fetch(event.request); |
|
|
}) |
|
|
); |
|
|
}); |
|
|
|