From 44a0c58664e066ba4e67f8da8b2be52e15c7ee0c Mon Sep 17 00:00:00 2001 From: Omar Najjar Date: Sat, 6 Jul 2024 23:46:41 +1000 Subject: [PATCH] x --- manifest.json | 2 +- service-worker.js | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/manifest.json b/manifest.json index 49eadcd..10cabc9 100644 --- a/manifest.json +++ b/manifest.json @@ -1,5 +1,5 @@ { - "name": "Instinct App", + "name": "Instinct", "short_name": "Instinct", "description": "A description of your app", "start_url": "./index.html", diff --git a/service-worker.js b/service-worker.js index 3441deb..0b2b7a6 100644 --- a/service-worker.js +++ b/service-worker.js @@ -1,10 +1,8 @@ const CACHE_NAME = 'instinct-app-cache'; const urlsToCache = [ - './', - './index.html', - './manifest.json', - './icon-192x192.png', - './icon-512x512.png', + '/instinct/', + '/instinct/index.html', + '/instinct/manifest.json', ]; self.addEventListener('install', (event) => {