Skip to content

Commit 13c4ba9

Browse files
committed
Trying to fix reverse verif bump sw.js for google v6.7
1 parent 985e512 commit 13c4ba9

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
google-site-verification: google9018480a1943f3a0.html

sw.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const CACHE_NAME = "customodoro-static-v6.6"; // Bump to v6.6
1+
const CACHE_NAME = "customodoro-static-v6.7"; // Bump to v6.7
22
const ASSETS_CACHE = "customodoro-assets-v1";
33
const urlsToCache = [
44
"/", "/index.html", "/reverse.html"
@@ -8,7 +8,7 @@ let isFirstInstall = false;
88

99
// Install: cache only the HTML essentials
1010
self.addEventListener("install", (event) => {
11-
console.log('🔧 Service Worker v6.6 installing...');
11+
console.log('🔧 Service Worker v6.7 installing...');
1212

1313
// Check if this is a first install
1414
event.waitUntil(
@@ -33,7 +33,7 @@ self.addEventListener("install", (event) => {
3333

3434
// Activate: clean up old caches and notify clients
3535
self.addEventListener("activate", (event) => {
36-
console.log('🚀 Service Worker v6.6 activating...');
36+
console.log('🚀 Service Worker v6.7 activating...');
3737

3838
event.waitUntil(
3939
// Clean up old caches

0 commit comments

Comments
 (0)