forked from BensinBosse/progressive-web-app-nr1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserviceWorker.js
39 lines (38 loc) · 1.09 KB
/
serviceWorker.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//för dev server:
self.addEventListener("install", (e) => {
console.log("Install!");
});
//för Github:
// self.addEventListener("install", (e) => {
// e.waitUntil(
// caches.open("static").then((cache) => {
// return cache.addAll([
// "./",
// "manifest.json",
// "Index.html",
// "ingame.html",
// "timer.html",
// "css/end.css",
// "css/general.css",
// "css/index.css",
// "css/ingame.css",
// "css/timer.css",
// "js/index.js",
// "js/timer.js",
// "js/variables.js",
// "src/images/icons/icon-72x72.png",
// "src/images/icons/icon-144x144.png",
// "src/images/icons/icon-192x192.png",
// ]);
// })
// );
// console.log("install dcode");
// });
// self.addEventListener("fetch", (e) => {
// e.respondWith(
// caches.match(e.request).then(response => {
// return response || fetch(e.request);
// })
// );
// console.log("Intercepting fetch request for: ${e.request.url}");
// });