Last active
October 31, 2024 08:53
-
-
Save audinue/9120951da1ee291bff5d0c25588eeaae to your computer and use it in GitHub Desktop.
Minimal service worker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
navigator.serviceWorker.register('/sw.js').then(() => history.go(0)) | |
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
addEventListener('fetch', e => e.respondWith(new Response('Hello world!'))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment