A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Cache about page

+1 -1
+1 -1
src/Javascript/Workers/service.js
··· 36 36 .then(response => response.json()) 37 37 .then(tree => { 38 38 const filteredTree = tree.filter(t => !exclude.find(u => u === t)) 39 - const whatToCache = [ href, "brain.elm.js", "ui.elm.js" ].concat(filteredTree) 39 + const whatToCache = [ href, `${href}/about` ].concat(filteredTree) 40 40 return caches.open(KEY).then(c => Promise.all(whatToCache.map(x => c.add(x)))) 41 41 }) 42 42 .then(_ => self.skipWaiting())