6 lines
275 B
JavaScript
6 lines
275 B
JavaScript
// 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.
|
|
});
|