Guest User

Untitled

a guest
Dec 12th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. const CACHE_NAME = 'cache-v1';
  2. const precacheResources = [
  3. '/',
  4. 'index.html',
  5. 'styles/main.css',
  6. 'images/space1.jpg',
  7. 'images/space2.jpg',
  8. 'images/space3.jpg'
  9. ];
  10.  
  11. self.addEventListener('install', event => {
  12. console.log('Service worker install event!');
  13. event.waitUntil(
  14. caches.open(CACHE_NAME)
  15. .then(cache => {
  16. return cache.addAll(precacheResources);
  17. })
  18. );
  19. });
Add Comment
Please, Sign In to add comment