mirror of
https://github.com/jkingsman/Remote-Terminal-for-MeshCore.git
synced 2026-05-06 21:42:52 +02:00
13 lines
356 B
JavaScript
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 () {});
|