Files
Remote-Terminal-for-MeshCore/frontend/public/sw.js
Jack Kingsman eed38337c8 Add dummy SWer
2026-04-12 19:11:17 -07:00

13 lines
356 B
JavaScript

// Minimal service worker required for PWA installability.
// No caching — this app is network-dependent. All fetches pass through.
self.addEventListener("install", function () {
self.skipWaiting();
});
self.addEventListener("activate", function (event) {
event.waitUntil(self.clients.claim());
});
self.addEventListener("fetch", function () {});