I can't find a way to delete service worker that are installed on users's browsers.
I deleted all things related to serviceWorkers and also tryed this : https://stackoverflow.com/a/33705250/11164691
navigator.serviceWorker.getRegistrations().then(function(registrations) {
for(let registration of registrations) {
registration.unregister()
} })
I put it on index.html, App.vue... => No effect because files aren't loaded.
The problem is that there are no files that are loaded to the client for those who have the registered serviceworker.
How can I deal with it ? And delete the service workers for my users ?