From 02653f0ada95064dcbc4ce8f0d0466aeaa8a0283 Mon Sep 17 00:00:00 2001 From: Rooyca <42101257+Rooyca@users.noreply.github.com> Date: Mon, 18 Mar 2024 21:58:39 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20Rooyca/1?= =?UTF-8?q?001M@3b97f6e1f9c0915ae2fd81419fd41dce5f350497=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- manifest.json | 1 + sw.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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"]); }) ); })