Skip to content

Instantly share code, notes, and snippets.

@FlorianRappl
Created July 2, 2018 21:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FlorianRappl/36f8fe0e98aa0d5078feda4d0c5c2fd8 to your computer and use it in GitHub Desktop.
Save FlorianRappl/36f8fe0e98aa0d5078feda4d0c5c2fd8 to your computer and use it in GitHub Desktop.
const files = [
'./',
'./app.js',
'./style.css',
];
self.addEventListener('install', async e => {
const cache = await caches.open('files');
cache.addAll(files);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment