Files
ESP32-WijiBoard/sw.js
T
2026-07-08 19:02:00 +02:00

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