Skip to content

Instantly share code, notes, and snippets.

@petmat
Created August 6, 2017 19:30
Show Gist options
  • Save petmat/daf958313efe670ddec3e2a1c91918fc to your computer and use it in GitHub Desktop.
Save petmat/daf958313efe670ddec3e2a1c91918fc to your computer and use it in GitHub Desktop.
self.addEventListener('fetch', function(e) {
console.log('[ServiceWorker] Fetch', e.request.url);
e.respondWith(
caches.match(e.request).then(function(response) {
return response || fetch(e.request);
})
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment