Source code

Revision control

Copy as Markdown

Other Tools

self.addEventListener('fetch', function(event) {
event.respondWith(
fetch(event.request)
.then(
function(response) {
return response;
},
function(error) {
return new Response('Error:' + error);
}));
});