mirror of
https://github.com/eliasstepanik/vdo.ninja.git
synced 2026-01-11 13:48:38 +00:00
7 lines
189 B
JavaScript
7 lines
189 B
JavaScript
self.addEventListener("fetch", fetchEvent => {
|
|
fetchEvent.respondWith(
|
|
caches.match(fetchEvent.request).then(res => {
|
|
return res || fetch(fetchEvent.request)
|
|
})
|
|
)
|
|
}) |