-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsw.js
31 lines (29 loc) · 835 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
const cacheName = 'hello-pwa';
const filesToCache = ['./', './index.html', './css/style.css', './js/main.js', './images/hello.png'];
//* Start the service worker and cache all of the app's content */
self.addEventListener('install', (e) => {
e.waitUntil(
(async () => {
try {
const cache = await caches.open(cacheName);
// console.log(cache);
return cache.addAll(filesToCache);
} catch (e) {
console.log('after install', e.message);
}
})()
);
});
/* Serve cached content when offline */
self.addEventListener('fetch', (e) => {
e.respondWith(
(async () => {
try {
const response = await caches.match(e.request);
return response || fetch(e.request);
} catch (e) {
console.log('after install', e.message);
}
})()
);
});