i got so many errors while testing it on my server
and i think we can have security issue if use this
anyway thank you and sorry about this
This commit is contained in:
MHSanaei
2024-02-23 17:39:43 +03:30
parent 81c9b4450b
commit a39d07a68a
3 changed files with 0 additions and 90 deletions
-39
View File
@@ -1,39 +0,0 @@
var self = this;
var filesToCache = [
'/'
];
self.addEventListener('install', function (e) {
e.waitUntil(
caches.open('3xPanel').then(function (cache) {
return cache.addAll(filesToCache);
})
);
});
self.addEventListener('activate', function (event) {
event.waitUntil(
caches.keys().then(function (cacheNames) {
return Promise.all(
cacheNames.filter(function (cacheName) {
}).map(function (cacheName) {
return caches.delete(cacheName);
})
);
})
);
});
self.addEventListener('fetch', function (event) {
event.respondWith(
caches.open('mysite-dynamic').then(function (cache) {
return cache.match(event.request).then(function (response) {
return response || fetch(event.request).then(function (response) {
cache.put(event.request, response.clone());
return response;
});
});
})
);
});
console.clear();