// 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. });