Вы можете обналичить ответы сети и обналичить их для обслуживания
window.addEventListener('fetch', function(event) {
event.respondWith(
caches.open('your-app').then(function(cache) {
return cache.match(event.request).then(function (response) {
return response || fetch(event.request).then(function(response) {
cache.put(event.request, response.clone());
return response;
});
});
})
);
});
ресурс