Created
October 2, 2017 07:34
-
-
Save osvaldasvalutis/69ddf0f883b3fb8724f2fdb777690c2f to your computer and use it in GitHub Desktop.
Service Worker gotchas – https://medium.com/kollegorna/service-worker-gotchas-af20a9dab986
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const clearOldCaches = () => { | |
return caches.keys().then(keys => { | |
return Promise.all(keys.filter(key => !key.startsWith(version)).map(key => caches.delete(key))); | |
}); | |
}; | |
self.addEventListener('activate', event => { | |
event.waitUntil(clearOldCaches().then(() => self.clients.claim())); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment