/
githubmirror
/
photoprism
Обзор
Документация
Войти
/
githubmirror
/
photoprism
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
internal/server/sw_fallback.js
14 строк
482 B
Michael Mayer
Cleanup: Use US English spelling in code comments
17 май 2026, 16:46
17 май 2026, 16:46
ea05645
Код
Авторство
О чём код?
// Minimal fallback service worker served during development and tests. // Production builds replace this handler with the Workbox-generated sw.js. self.addEventListener("install", (event) => { self.skipWaiting(); }); self.addEventListener("activate", (event) => { event.waitUntil(self.clients.claim()); }); self.addEventListener("fetch", () => { // Default network-first behavior; caching is delegated to the // Workbox-generated service worker in production builds. });