1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-13 06:05:02 +00:00
mon-entreprise/removeServiceWorker.js

8 lines
190 B
JavaScript
Raw Normal View History

if (navigator.serviceWorker) {
navigator.serviceWorker.getRegistrations().then(function (registrations) {
for (let registration of registrations) {
registration.unregister()
}
})
}