From 08b1633d4a84dc33db30d4c2eadf6a024a26cdc4 Mon Sep 17 00:00:00 2001 From: Alexander Whitestone Date: Tue, 24 Mar 2026 19:00:28 -0400 Subject: [PATCH] fix: bust service worker cache to pull latest upstream modules --- sw.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sw.js b/sw.js index 551584b..b29f609 100644 --- a/sw.js +++ b/sw.js @@ -1,8 +1,8 @@ // The Nexus — Service Worker // Cache-first for assets, network-first for API calls -const CACHE_NAME = 'nexus-v1'; -const ASSET_CACHE = 'nexus-assets-v1'; +const CACHE_NAME = 'nexus-v3'; +const ASSET_CACHE = 'nexus-assets-v3'; const CORE_ASSETS = [ '/', -- 2.43.0