-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsw.js
35 lines (32 loc) · 773 Bytes
/
sw.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
const CACHE_NAME = 'code-to-adventure-v1';
const ASSETS = [
'/',
'/index.php',
'/styles/main.css',
'/js/main.js',
'/favicon.ico',
'https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'
];
self.addEventListener('install', event => {
event.waitUntil(
caches.open(CACHE_NAME)
.then(cache => cache.addAll(ASSETS))
);
});
self.addEventListener('fetch', event => {
event.respondWith(
caches.match(event.request)
.then(response => response || fetch(event.request))
);
});
self.addEventListener('activate', event => {
event.waitUntil(
caches.keys().then(keys => Promise.all(
keys.map(key => {
if (key !== CACHE_NAME) {
return caches.delete(key);
}
})
))
);
});