1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00

Delete sw.js

This commit is contained in:
mihaisc 2022-08-01 19:45:01 +03:00 committed by GitHub
parent 9920739f48
commit 38f05532d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
sw.js
View File

@ -1,13 +0,0 @@
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))
});
});