-
Notifications
You must be signed in to change notification settings - Fork 66
/
service-worker.js
37 lines (33 loc) · 956 Bytes
/
service-worker.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
36
37
let CACHE_NAME = 'QuickBill';
let urlsToCache = [
'./index.html',
'./404.html',
'/assets/css/styles.css',
'/assets/images/**.*',
'/dist/index-bundle.js'
];
self.addEventListener('activate', event => {
event.waitUntil(self.clients.claim());
});
self.addEventListener("install", function(event) {
event.waitUntil(
caches.open(CACHE_NAME)
.then(function(cache) {
fetch("manifest.json")
.then(resp => {
resp.json();
})
.then(() => {
cache.addAll(urlsToCache);
console.log('cached');
})
})
)
})
self.addEventListener('fetch', function(event) {
event.respondWith(
caches.match(event.request, {ignoreSearch:true}).then(function(response) {
return response || fetch(event.request);
})
);
});