diff --git a/manifest.json b/manifest.json index cedfafe..883f761 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,7 @@ { "name": "1001 Movies You Should Watch Before You Die", "short_name": "1001 Movies", + "description": "Everyday get a movie from the list of 1001 movies you should watch before you die", "start_url": ".", "display": "standalone", "icons": [ diff --git a/sw.js b/sw.js index 546c62f..f891152 100644 --- a/sw.js +++ b/sw.js @@ -1,7 +1,7 @@ self.addEventListener("install", e => { e.waitUntil( caches.open("static").then(cache => { - return cache.addAll(["./", "./style.css", "./favicon.svg", "./600x900.svg"]); + return cache.addAll(["./style.css", "./favicon.svg", "./600x900.svg"]); }) ); })