mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-12-22 17:23:22 +01:00
self destroying service worker
This commit is contained in:
parent
e60e54ff13
commit
3e777545b5
15
public/sw.js
Normal file
15
public/sw.js
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
// https://github.com/NekR/self-destroying-sw
|
||||||
|
self.addEventListener('install', function (e) {
|
||||||
|
self.skipWaiting()
|
||||||
|
})
|
||||||
|
|
||||||
|
self.addEventListener('activate', function (e) {
|
||||||
|
self.registration
|
||||||
|
.unregister()
|
||||||
|
.then(function () {
|
||||||
|
return self.clients.matchAll()
|
||||||
|
})
|
||||||
|
.then(function (clients) {
|
||||||
|
clients.forEach((client) => client.navigate(client.url))
|
||||||
|
})
|
||||||
|
})
|
Loading…
Reference in New Issue
Block a user