Skip to content

Instantly share code, notes, and snippets.

@thepassle
Created October 28, 2019 14:17
Show Gist options
  • Save thepassle/680134afaa575818da4a0291a77e71f4 to your computer and use it in GitHub Desktop.
Save thepassle/680134afaa575818da4a0291a77e71f4 to your computer and use it in GitHub Desktop.
lifecycle3
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