Skip to content

Instantly share code, notes, and snippets.

@leotm
Created November 19, 2021 15:09
Show Gist options
  • Save leotm/1b9009c840e5684ced3f23f22599d6d1 to your computer and use it in GitHub Desktop.
Save leotm/1b9009c840e5684ced3f23f22599d6d1 to your computer and use it in GitHub Desktop.
Register a service worker
navigator.serviceWorker
.register('/sw.js')
.then((reg) => console.log('SW registered', reg))
.catch((err) => console.log('rip', err))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment