Files
holesail-browser/extension/dashboard/sw.js
T
Raven Scott e665a814d7
CI / Build & Test (push) Successful in 2m52s
fix(pwa): remove no-op fetch handler from service worker
Chrome warns that an empty fetch listener adds navigation overhead.
Removed the handler entirely — a registered SW without a fetch handler
still satisfies Chrome's PWA installability requirement since v112.
2026-03-01 02:37:23 -05:00

4 lines
198 B
JavaScript

// Minimal service worker required for PWA installability.
// No fetch handler needed — the extension bundle is already local
// and Chrome does not require one for the install prompt since v112.