mirror of
https://github.com/cloudmaker97/DurstRechner.git
synced 2025-12-05 23:48:39 +00:00
Test für Base-Paths, einzelne Pfade
This commit is contained in:
parent
87d0169a65
commit
05f58406d0
1 changed files with 15 additions and 1 deletions
|
|
@ -24,10 +24,24 @@ const FILES_TO_CACHE = [
|
||||||
`${BASE_PATH}/assets/favicon/favicon.ico`,
|
`${BASE_PATH}/assets/favicon/favicon.ico`,
|
||||||
];
|
];
|
||||||
|
|
||||||
|
// Cache files with the correct base path
|
||||||
|
const FILES_TO_CACHE_PREFIXED = FILES_TO_CACHE;
|
||||||
|
|
||||||
self.addEventListener('install', event => {
|
self.addEventListener('install', event => {
|
||||||
event.waitUntil(
|
event.waitUntil(
|
||||||
caches.open(CACHE_NAME).then(cache => {
|
caches.open(CACHE_NAME).then(cache => {
|
||||||
return cache.addAll(FILES_TO_CACHE);
|
const cachePromises = FILES_TO_CACHE_PREFIXED.map(url => {
|
||||||
|
return fetch(url).then(response => {
|
||||||
|
if (response.ok) {
|
||||||
|
return cache.put(url, response);
|
||||||
|
} else {
|
||||||
|
console.error(`Failed to fetch: ${url}`);
|
||||||
|
}
|
||||||
|
}).catch(err => {
|
||||||
|
console.error(`Failed to fetch (network error): ${url}`, err);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return Promise.all(cachePromises);
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue