blob: b5225ec4a46b2b28d3e15061ee76cf1d6219fc84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
import { precacheAndRoute, matchPrecache } from "workbox-precaching";
import { setDefaultHandler } from "workbox-routing";
import { NetworkOnly } from "workbox-strategies";
declare let self: ServiceWorkerGlobalScope;
self.addEventListener("message", (event) => {
if (event.data && (event.data as { type: string }).type === "SKIP_WAITING") {
void self.skipWaiting();
}
});
precacheAndRoute(self.__WB_MANIFEST);
const networkOnly = new NetworkOnly();
const networkOnlyPaths = ["/api", "/swagger"];
setDefaultHandler((options) => {
const { request, url } = options;
if (url) {
for (const p of networkOnlyPaths) {
if (url.pathname.startsWith(p)) return networkOnly.handle(options);
}
}
if (request instanceof Request && request.destination === "document")
return matchPrecache("/index.html").then((r) =>
r == null ? Response.error() : r
);
else return networkOnly.handle(options);
});
|