const cacheName = 'gottesdienste-v1.1'; const assets = [ '/', '/static/styles.css', '/static/gallery.css', '/static/app.js', '/static/gallery.js', '/static/icons/logo-192x192.png', '/static/icons/logo-512x512.png' ]; self.addEventListener('install', e => { e.waitUntil( caches.open(cacheName).then(cache => { return cache.addAll(assets); }) ); }); self.addEventListener('fetch', e => { e.respondWith( caches.match(e.request).then(response => { return response || fetch(e.request); }) ); });