Skip to content

Instantly share code, notes, and snippets.

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