Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save osvaldasvalutis/5cb63a65a5f991bb234ef0630b95260a to your computer and use it in GitHub Desktop.
Save osvaldasvalutis/5cb63a65a5f991bb234ef0630b95260a to your computer and use it in GitHub Desktop.
event.respondWith(caches.match(request).then(response => {
return response // cache-first
|| fetch(request).then(response => { // network
// ...
})
.catch(() => { // offline
if(type.startsWith('image')) {
return caches.match('/offline.jpg');
}
else {
// ...
}
});
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment