feat: improve service worker update notifications

- Added toast notifications for users when a new service worker version is available.
- Updated service worker configuration to require manual activation for updates.
- Enhanced user experience by allowing users to choose when to update the application.
This commit is contained in:
typist
2025-10-29 21:46:54 +08:00
parent 006f3d4dbb
commit 9540c2b550
2 changed files with 29 additions and 8 deletions

View File

@@ -76,8 +76,8 @@ export default defineConfig({
}
],
cleanupOutdatedCaches: true,
clientsClaim: true,
skipWaiting: true
clientsClaim: true, // 新 SW 激活后立即接管
skipWaiting: false // 不自动跳过等待,需要手动触发
}
})
],