This commit is contained in:
root
2025-05-09 17:03:37 +02:00
parent ba26edf8be
commit e6f7c87ea4
3 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
const CACHE_VERSION = 'nexus-timer-cache-v7'; const CACHE_VERSION = 'nexus-timer-cache-v8';
const APP_SHELL_URLS = [ const APP_SHELL_URLS = [
// '/', // Let NetworkFirst handle '/' // '/', // Let NetworkFirst handle '/'
'/manifest.json', '/manifest.json',

View File

@@ -60,7 +60,7 @@ const store = useStore();
// and replace it with the actual build timestamp. // and replace it with the actual build timestamp.
// For display, we'll use a ref. // For display, we'll use a ref.
const buildTime = ref("2025-05-09 16:57:06"); const buildTime = ref("2025-05-09 16:57:06");
// If your hook replaces the entire line `const buildTime = ref("__BUILD_TIME__");` // If your hook replaces the entire line `const buildTime = ref("2025-05-09 17:03:37");`
// with `const buildTime = ref("YYYY-MM-DD HH:MM:SS");`, that's also fine. // with `const buildTime = ref("YYYY-MM-DD HH:MM:SS");`, that's also fine.
// Or, if it replaces only the string content: `const buildTime = ref("Actual Build Time");` // Or, if it replaces only the string content: `const buildTime = ref("Actual Build Time");`