Skip to content

Instantly share code, notes, and snippets.

@oahehc
Created September 30, 2020 03:38
Show Gist options
  • Select an option

  • Save oahehc/4792fe823f6aaddb4696f10a8186dbfc to your computer and use it in GitHub Desktop.

Select an option

Save oahehc/4792fe823f6aaddb4696f10a8186dbfc to your computer and use it in GitHub Desktop.
const urlsToCache = ["/faq", "/contact"];
self.addEventListener("install", (event) => {
event.waitUntil(
caches.open(CACHE_NAME).then((cache) => {
return cache.addAll(urlsToCache);
})
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment