diff --git a/public/sw.js b/public/sw.js index 8b664dec..89f9d534 100644 --- a/public/sw.js +++ b/public/sw.js @@ -61,6 +61,11 @@ self.addEventListener('fetch', (event) => { } })()) } + if(path[1] === 'tf'){{ + event.respondWith(new Response("Cannot find resource from cache", { + status: 404 + })) + }} })