blob: 67f5dfd4433b7775eef0e0258aed249a61a8f9b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import { precacheAndRoute, matchPrecache } from 'workbox-precaching';
import { setDefaultHandler } from 'workbox-routing';
import { NetworkOnly } from 'workbox-strategies';
declare let self: ServiceWorkerGlobalScope;
precacheAndRoute(self.__WB_MANIFEST);
const networkOnly = new NetworkOnly();
setDefaultHandler((options) => {
const { request, url } = options;
if (url && url.pathname.startsWith('/api/')) {
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);
});
|