aboutsummaryrefslogtreecommitdiff
path: root/sw.js
blob: a7175db5b353d0e036e0ac49d1ef91ec0681a09f (plain)
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
importScripts('/cache-polyfill.js');

self.addEventListener('install', function(e) {

e.waitUntil(

caches.open('navanchauhan').then(function(cache) {

return cache.addAll([

'/',

'/index.html',

'/Contact.html',

'/css/*',

'/js/*',

'/404.html',

'/*.png'

]);

})

);

});