mirror of
https://github.com/betagouv/mon-entreprise
synced 2025-02-09 05:15:02 +00:00
7db1a3394e
Pour éviter l'arborescence `mon-entreprise/mon-entreprise` qui prêtait à confusion
8 lines
324 B
JavaScript
8 lines
324 B
JavaScript
// A simple, no-op service worker that takes immediate control.
|
|
|
|
self.addEventListener('install', () => {
|
|
// Skip over the "waiting" lifecycle state, to ensure that our
|
|
// new service worker is activated immediately, even if there's
|
|
// another tab open controlled by our older service worker code.
|
|
self.skipWaiting()
|
|
})
|