Skip to content

Instantly share code, notes, and snippets.

@kypflug

kypflug/sw-3.js Secret

Created December 15, 2017 01:55

Revisions

  1. kypflug created this gist Dec 15, 2017.
    7 changes: 7 additions & 0 deletions sw-3.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    caches.open('my-cache').then(function(cache) {
    return cache.addAll([
    '/index.html',
    '/styles.css',
    '/main.js'
    ]);
    })