mirror of
https://github.com/Steffo99/steffoweb.git
synced 2024-11-22 16:14:30 +00:00
22 lines
775 B
JavaScript
22 lines
775 B
JavaScript
|
self.addEventListener('fetch', function(event) {
|
|||
|
var isPostRequest = event.request.method === 'POST';
|
|||
|
event.respondWith(
|
|||
|
fetch(event.request).catch(function(err) {
|
|||
|
if (err instanceof TypeError) {
|
|||
|
if (isPostRequest) {
|
|||
|
// eslint-disable-next-line
|
|||
|
console.log(
|
|||
|
'⚛️Preact CLI development tip: A POST request just failed. This might fail for your users as well due to a network error. It may be worth exploring the backgroundSync API.'
|
|||
|
);
|
|||
|
} else {
|
|||
|
// eslint-disable-next-line
|
|||
|
console.log(
|
|||
|
'⚛️Preact CLI development tip: A GET request just failed. This might fail for your users as well due to a network error. It may be worth adding runtimeCaching to your Service Worker.'
|
|||
|
);
|
|||
|
}
|
|||
|
}
|
|||
|
return err;
|
|||
|
})
|
|||
|
);
|
|||
|
});
|