blob: 39f11baf8cb965988cf6a2f0abf914b1484ec63c [file] [log] [blame]
self.addEventListener('fetch', function(event) {
event.respondWith(
fetch(event.request)
.then(
function(response) {
return response;
},
function(error) {
return new Response('Error:' + error);
}));
});