Skip to content

Instantly share code, notes, and snippets.

@thepassle
Created October 28, 2019 14:14
Show Gist options
  • Save thepassle/84696abda4ef8acf38437feae21c5832 to your computer and use it in GitHub Desktop.
Save thepassle/84696abda4ef8acf38437feae21c5832 to your computer and use it in GitHub Desktop.
strategies5
// network only
self.addEventListener(‘fetch’, function(event) {
event.respondWith(fetch(event.request));
// or simply don’t call event.respondWith, which
// will result in default browser behaviour
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment