Skip to content

Instantly share code, notes, and snippets.

@thepassle
Created October 28, 2019 14:15
Show Gist options
  • Save thepassle/ff68998ae3470a2cd152c7b269377c91 to your computer and use it in GitHub Desktop.
Save thepassle/ff68998ae3470a2cd152c7b269377c91 to your computer and use it in GitHub Desktop.
strategies9
// network first
self.addEventListener('fetch', function(event) {
event.respondWith(
fetch(event.request).catch(function() {
return caches.match(event.request);
})
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment