Created
October 28, 2019 14:17
-
-
Save thepassle/680134afaa575818da4a0291a77e71f4 to your computer and use it in GitHub Desktop.
lifecycle3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
self.addEventListener('install', event => { | |
event.waitUntil( | |
caches.open(CACHENAME).then(cache => { | |
return cache.addAll([ | |
'./index.html', | |
'./main.4c088efe.js', | |
'./about.cd95a028.js', | |
'./contact.d0b533e7.js', | |
'./offline.eab917fd.js', | |
]); | |
}) | |
); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment