Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save osvaldasvalutis/5e1ca367481d2d8404daf701f749b3c1 to your computer and use it in GitHub Desktop.
Save osvaldasvalutis/5e1ca367481d2d8404daf701f749b3c1 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 new Response('<svg...', {headers: {'Content-Type': 'image/svg+xml', 'Cache-Control': 'no-store'}});
}
else {
// ...
}
});
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment