Skip to content

Instantly share code, notes, and snippets.

@alexpermiakov
Last active December 23, 2019 13:55
Show Gist options
  • Save alexpermiakov/9a11d5ccfecdaca231aa060f8ed47a6c to your computer and use it in GitHub Desktop.
Save alexpermiakov/9a11d5ccfecdaca231aa060f8ed47a6c to your computer and use it in GitHub Desktop.
self.addEventListener('fetch', function(event) {
event.respondWith(
caches.open(CACHE_NAME).then(function(cache) {
return cache.match(event.request).then(function (response) {
return response || fetch(event.request).then(function(response) {
return response;
});
});
})
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment