upgrade to installable PWA. Fixes #6

This commit is contained in:
osiu97
2026-07-08 19:02:00 +02:00
parent 49f91c761d
commit a321e8dd4c
3 changed files with 32 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
// Minimal Service Worker to satisfy PWA installability requirements
self.addEventListener('fetch', function(event) {
// We do not intercept or cache anything, just pass the request through.
// This minimal fetch listener is enough to trigger the PWA install prompt.
});