fix(frontend): self-destroying service worker to avoid stale UI during dev

The precaching PWA SW was serving an old bundle after deploys (stale UI).
Switch to selfDestroying so it unregisters + clears caches on all clients;
deploys are now always fresh. Re-add a tuned PWA before the demo.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Kartikeya
2026-06-27 15:52:24 -07:00
parent 5a03ad4d6b
commit 4ddc59be08
+4 -11
View File
@@ -7,17 +7,10 @@ export default defineConfig({
plugins: [
react(),
tailwindcss(),
VitePWA({
registerType: 'autoUpdate',
manifest: {
name: 'PodMan',
short_name: 'PodMan',
description: 'Ambient AI teammate that prevents merge collisions before push',
theme_color: '#0b0f17',
background_color: '#0b0f17',
display: 'standalone',
},
}),
// Self-destroying during active development: unregisters any previously
// installed service worker and clears its caches so deploys are always
// fresh (no stale UI). Re-enable a precaching PWA before the demo.
VitePWA({ selfDestroying: true }),
],
server: {
port: 5173,