2022-11-04 12:10:51 -04:00
|
|
|
const PWA_PRELOAD = {
|
|
|
|
pages: ['/', '/about', '/settings'],
|
|
|
|
scripts: ['/scripts/navbar.js', '/scripts/themes/card.js'],
|
2022-11-04 12:36:18 -04:00
|
|
|
styles: ['/styles/vendor/bulma.min.css', '/styles/vendor/cssgg.min.css', '/styles/themes/card.css']
|
2022-11-04 12:10:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
self.addEventListener("install", function(e) {
|
|
|
|
e.waitUntil(
|
|
|
|
caches.open("pwa").then(function(cache) {
|
|
|
|
return cache.addAll([
|
|
|
|
...PWA_PRELOAD.pages,
|
|
|
|
...PWA_PRELOAD.scripts,
|
|
|
|
...PWA_PRELOAD.styles
|
|
|
|
]);
|
|
|
|
})
|
|
|
|
);
|
|
|
|
});
|