mirror of
https://github.com/Michatec/MiniFaceBook.git
synced 2026-04-01 07:56:28 +02:00
19 lines
440 B
JavaScript
19 lines
440 B
JavaScript
const CACHE_NAME = "minifb-v1";
|
|
const urlsToCache = [
|
|
"/",
|
|
"/static/css/styles.css",
|
|
"/static/js/theme.js",
|
|
"/static/manifest.json"
|
|
];
|
|
|
|
self.addEventListener("install", event => {
|
|
event.waitUntil(
|
|
caches.open(CACHE_NAME).then(cache => cache.addAll(urlsToCache))
|
|
);
|
|
});
|
|
|
|
self.addEventListener("fetch", event => {
|
|
event.respondWith(
|
|
caches.match(event.request).then(response => response || fetch(event.request))
|
|
);
|
|
}); |