Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save osvaldasvalutis/a56e35a82fbc89fd146d2b8e1cc3a881 to your computer and use it in GitHub Desktop.
Save osvaldasvalutis/a56e35a82fbc89fd146d2b8e1cc3a881 to your computer and use it in GitHub Desktop.
var thirdPartyExceptions = [
'https://code.jquery.com/jquery.min.js'
];
// ...
event.respondWith(fetch(request).then(response => { // network
// cache only resources from this domain as well as the exceptions
if(location.origin === url.origin ||
thirdPartyExceptions.includes(url.href)) {
// addToCache use
}
return response;
}))
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment