Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save osvaldasvalutis/f78b3dcfaf086d6acae96d276f57fab9 to your computer and use it in GitHub Desktop.
Save osvaldasvalutis/f78b3dcfaf086d6acae96d276f57fab9 to your computer and use it in GitHub Desktop.
const otherResources = [
'/about/',
'/contact/',
'/services/'
],
cacheCriticals = () => {
return caches.open(version).then( cache => {
cache.addAll(otherResources); // important, but not critical resources
return cache.addAll(criticalResources); // critical resources
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment