Skip to content

Instantly share code, notes, and snippets.

@thepassle
Created October 28, 2019 14:18
Show Gist options
  • Save thepassle/b60d7779b1f753531b1b6ece103270be to your computer and use it in GitHub Desktop.
Save thepassle/b60d7779b1f753531b1b6ece103270be to your computer and use it in GitHub Desktop.
lifecycle7
// cache only, or any other caching strategy
self.addEventListener('fetch', function(event) {
event.respondWith(caches.match(event.request));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment