Situation:
On mywebsite.com/game, I registered a service-worker with
navigator.serviceWorker.register('/service-worker.js', {scope: "/"});
On my server, '/service-worker.js'
has a maxAge of 1d
.
Problem:
service-worker.js
has a major bug. It always displays an empty page and can't fetch anything. service-worker.js
must be changed.
The problem is whenever a user goes to mywebsite.com/game
, it displays the empty page and does nothing more. I am unable to make the client fetch the new service-worker.js
.
How can I make the client fetch the new service-worker.js
?
What you're describing—a check for updates to /service-worker.js
—happens by default, automatically, under the circumstances laid out in this article:
An update is triggered if any of the following happens:
- A navigation to an in-scope page.
- A functional events such as push and sync, unless there's been an update check within the previous 24 hours.
- Calling
.register()
only if the service worker URL has changed. However, you should avoid changing the worker URL.
All modern web browsers will ignore any Cache-Control
headers you set on /service-worker.js
by default and go directly against the web server to obtain the latest copy.
This Stack Overflow answer has some best practices for what the revised service-worker.js
file should contain if you want it to behave like a "kill switch."