Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created June 27, 2019 13:20
Show Gist options
  • Save indreklasn/4d8088cef9d5a15836f519f89640ba9d to your computer and use it in GitHub Desktop.
Save indreklasn/4d8088cef9d5a15836f519f89640ba9d to your computer and use it in GitHub Desktop.
self.addEventListener('fetch', e => {
console.log(caches)
e.respondWith(
caches.match(e.request).then(res => {
return res
})
)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment