Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

sw: bump cache version v2 -> v3 to flush stale bios/ableton

iOS users were still running the pre-iOS-download-fix bios.mjs and
ableton.mjs because the service worker cached them for an hour. Bumping
CACHE_NAME forces every client to drop the old cache on next SW install.

+1 -1
+1 -1
system/public/sw.js
··· 1 1 // Aesthetic Computer Service Worker 2 2 // Caches JavaScript modules for faster subsequent loads 3 3 4 - const CACHE_NAME = 'ac-modules-v2'; // Bump version to force SW update 4 + const CACHE_NAME = 'ac-modules-v3'; // Bump version to force SW update 5 5 const CACHE_DURATION = 60 * 60 * 1000; // 1 hour in ms (dev-friendly) 6 6 7 7 // Critical modules to precache on install