Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save osvaldasvalutis/c8b62f578f323940b524be686cb4955d to your computer and use it in GitHub Desktop.
Save osvaldasvalutis/c8b62f578f323940b524be686cb4955d to your computer and use it in GitHub Desktop.
self.addEventListener('fetch', event => {
var type = event.request.headers.get('Accept');
// network-first for HTML documents
if(type.includes('text/html')) {
event.respondWith(
// respondWith code from network-first section
);
}
// cache-first for assets
else {
event.respondWith(
// respondWith code from cache-first section
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment