From 91067beb405b72249b37e62340b60dc78f92fd38 Mon Sep 17 00:00:00 2001 From: ayoayco Date: Sun, 18 Aug 2024 10:20:32 +0200 Subject: [PATCH] chore: forceLogging on prd --- src/sw.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sw.mjs b/src/sw.mjs index 7f4c1f9..6c22960 100644 --- a/src/sw.mjs +++ b/src/sw.mjs @@ -5,7 +5,7 @@ import { logInfo } from './utils/logger' * @see https://ayco.io/n/@ayco/astro-sw */ const cacheName = `${__prefix ?? 'app'}-v${__version + '-' + Date.now()}` -const forceLogging = false; +const forceLogging = true; const addResourcesToCache = async (resources) => { const cache = await caches.open(cacheName);