1
0

feat: pwa manifest, icon and minimal service worker

This commit is contained in:
2026-09-03 18:57:31 +02:00
parent 3efde1a828
commit c1852435c8
6 changed files with 64 additions and 0 deletions

11
web/public/sw.js Normal file
View File

@@ -0,0 +1,11 @@
self.addEventListener('install', () => {
self.skipWaiting()
})
self.addEventListener('activate', (event) => {
event.waitUntil(self.clients.claim())
})
self.addEventListener('fetch', () => {
// no-op: presence of a fetch handler enables PWA install
})