commit a8f3cb95e0e0819af95a4982f521c2d4eca53834
parent 6233060b2fa39b6576dc65cdf8387a320a689e72
Author: Hunter
Date: Thu, 2 Apr 2026 22:56:37 -0400
use cache: 'no-cache' during sw install
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/generate_manifests.py b/generate_manifests.py
@@ -223,7 +223,7 @@ self.addEventListener('install', (event) => {{
// Using Promise.allSettled to continue even if some fail
return Promise.allSettled(
absoluteUrls.map(url =>
- fetch(url)
+ fetch(url, {{ cache: 'no-cache' }})
.then(response => {{
if (!response.ok) {{
throw new Error(`HTTP error! status: ${{response.status}}`);