Skip to content

Instantly share code, notes, and snippets.

@roelofjan-elsinga
Created August 5, 2020 11:23
Show Gist options
  • Save roelofjan-elsinga/78624db71a67657a22fbf447bce03df7 to your computer and use it in GitHub Desktop.
Save roelofjan-elsinga/78624db71a67657a22fbf447bce03df7 to your computer and use it in GitHub Desktop.
Include Service worker in your HTML
<script>
// Check that service workers are supported
if ('serviceWorker' in navigator) {
// Use the window load event to keep the page load performant
window.addEventListener('load', () => {
navigator.serviceWorker.register('/sw.js');
});
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment