Skip to content

Instantly share code, notes, and snippets.

@ahmetilhn
Created May 2, 2024 20:33
Show Gist options
  • Save ahmetilhn/01f3dc4fb334e82656ac13b4f366e4e3 to your computer and use it in GitHub Desktop.
Save ahmetilhn/01f3dc4fb334e82656ac13b4f366e4e3 to your computer and use it in GitHub Desktop.
Service worker network only cache strategy
self.addEventListener('fetch', event => {
event.respondWith(
fetch(event.request)
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment