mirror of
https://github.com/betagouv/mon-entreprise
synced 2025-02-13 06:05:02 +00:00
8 lines
190 B
JavaScript
8 lines
190 B
JavaScript
|
if (navigator.serviceWorker) {
|
||
|
navigator.serviceWorker.getRegistrations().then(function (registrations) {
|
||
|
for (let registration of registrations) {
|
||
|
registration.unregister()
|
||
|
}
|
||
|
})
|
||
|
}
|