Skip to content

Instantly share code, notes, and snippets.

@jacky810124
Created March 28, 2018 15:48
Show Gist options
  • Save jacky810124/7f99e92edcb0b8e6a9ca52aecaa00e84 to your computer and use it in GitHub Desktop.
Save jacky810124/7f99e92edcb0b8e6a9ca52aecaa00e84 to your computer and use it in GitHub Desktop.
PWA Day 06 - network falling back to cache
self.addEventListener('fetch', function(event) {
event.respondWith(
fetch(event.request).catch(function() {
return caches.match(event.request)
})
)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment