-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsw.js
89 lines (82 loc) · 2.2 KB
/
sw.js
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
importScripts('/lib/workbox-v6.4.2/workbox-sw.js');
workbox.setConfig({
modulePathPrefix: '/lib/workbox-v6.4.2/'
});
const { core, routing, strategies, expiration, precaching, cacheableResponse } = workbox;
const { StaleWhileRevalidate, CacheFirst, NetworkFirst, NetworkOnly } = strategies;
const { ExpirationPlugin } = expiration;
const { CacheableResponsePlugin } = cacheableResponse;
core.skipWaiting();
core.clientsClaim();
precaching.cleanupOutdatedCaches();
routing.registerRoute(
'/sw.js',
new StaleWhileRevalidate()
);
routing.registerRoute(
new RegExp('\\.(css|js|woff2)$'),
new CacheFirst({
cacheName: 'assets-cache',
plugins: [
new CacheableResponsePlugin({
statuses: [0, 200]
}),
new ExpirationPlugin({
maxEntries: 100,
maxAgeSeconds: 6 * 60 * 60,
}),
]
})
);
routing.registerRoute(
new RegExp('\\.(webp|png|jpg|jpeg|gif|svg|ico)$'),
new CacheFirst({
cacheName: 'images-cache',
plugins: [
new CacheableResponsePlugin({
statuses: [0, 200]
}),
new ExpirationPlugin({
maxEntries: 100,
maxAgeSeconds: 24 * 60 * 60,
}),
]
})
);
routing.registerRoute(
new RegExp('githubusercontent'),
new CacheFirst({
cacheName: 'github-cache',
plugins: [
new CacheableResponsePlugin({
statuses: [0, 200]
}),
new ExpirationPlugin({
maxEntries: 100,
maxAgeSeconds: 24 * 60 * 60,
}),
]
})
);
routing.registerRoute(
new RegExp('^https://img\.shields'),
new CacheFirst({
cacheName: 'shields-cache',
plugins: [
new CacheableResponsePlugin({
statuses: [0, 200]
}),
new ExpirationPlugin({
maxEntries: 100,
maxAgeSeconds: 10 * 60,
}),
]
})
);
routing.registerRoute(
new RegExp('googletagmanager|cnzz|giscus|api\.github|rproxy|_vercel'),
new NetworkOnly()
);
routing.setDefaultHandler(
new StaleWhileRevalidate()
);