From f1ba0a0a32449f937a0c575947328fc59a640fd7 Mon Sep 17 00:00:00 2001 From: planetazuzu Date: Fri, 2 Jan 2026 20:38:08 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20incrementar=20Service=20Worker=20a=20v1.?= =?UTF-8?q?0.5=20para=20forzar=20actualizaci=C3=B3n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Service Worker actualizado a v1.0.5 - Fuerza actualización completa del index.html con prefijos - Elimina cachés antiguos automáticamente --- public/sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/sw.js b/public/sw.js index a6506e9c..fedeb2b3 100644 --- a/public/sw.js +++ b/public/sw.js @@ -38,8 +38,8 @@ if (isDevelopment) { } // Versión del cache - Incrementar cuando hay cambios importantes -// v1.0.4: Orden de carga garantizado con prefijos numéricos - forzar actualización completa -const CACHE_VERSION = 'v1.0.4'; +// v1.0.5: Plugin fix-html-references - forzar actualización completa del index.html +const CACHE_VERSION = 'v1.0.5'; const CACHE_NAME = `emerges-tes-${CACHE_VERSION}`; const RUNTIME_CACHE = `emerges-tes-runtime-${CACHE_VERSION}`;