commit 738f558ad51a61780c5d5d487a85b2016e044361
parent b437c6ced90e3bd2e6b2ae492b3ea7ce13a021b9
Author: AMIT DUTTA <amitdutta4255@gmail.com>
Date: Wed, 18 Feb 2026 13:11:32 +0530
Update service worker to cache index.html
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sw.js b/sw.js
@@ -1,7 +1,7 @@
const CACHE_NAME = 'walogger-v1';
const ASSETS = [
'./',
- './wpChat.html',
+ './index.html',
'./icon.svg',
'https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Google+Sans:wght@400;500;700&display=swap',
'https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,400,0,0'
@@ -15,4 +15,5 @@ self.addEventListener('fetch', (e) => {
e.respondWith(
caches.match(e.request).then(response => response || fetch(e.request))
);
-});-
\ No newline at end of file
+
+});