Try to speed up LCP allSettled

This commit is contained in:
schlagmichdoch 2024-06-06 02:00:33 +02:00
parent 924c17323d
commit fcb854a000
2 changed files with 5 additions and 5 deletions

View file

@ -156,7 +156,7 @@ self.addEventListener('activate', evt => {
return evt.waitUntil(
caches.keys()
.then(cacheNames => {
return Promise.all(
return Promise.allSettled(
cacheNames.map(cacheName => {
if (cacheName !== cacheTitle) {
return caches.delete(cacheName);