-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsw.js
61 lines (51 loc) · 1.48 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
importScripts('https://storage.googleapis.com/workbox-cdn/releases/3.4.1/workbox-sw.js');
if (workbox) {
// デバッグ用設定を有効化
workbox.setConfig({ debug: true });
// Force production builds
//workbox.setConfig({ debug: false });
console.log("Workbox loaded.");
workbox.precaching.precacheAndRoute([
{ url: '/index.html', revision: '383676' },
]);
// htmlをキャッシュ登録
workbox.routing.registerRoute(
new RegExp('.*\.html'),
workbox.strategies.networkFirst()
);
// jsをキャッシュ登録
workbox.routing.registerRoute(
new RegExp('.*\.js'),
workbox.strategies.networkFirst()
);
// cssをキャッシュ登録
workbox.routing.registerRoute(
// Cache CSS files
/.*\.css/,
// Use cache but update in the background ASAP
workbox.strategies.staleWhileRevalidate({
// Use a custom cache name
cacheName: 'css-cache',
})
);
// アセットファイルをキャッシュ登録
workbox.routing.registerRoute(
// Cache image files
/.*\.(?:png|jpg|mp3|tmss|tmx|ttf)/,
// Use the cache if it's available
workbox.strategies.cacheFirst({
// Use a custom cache name
cacheName: 'asset-cache',
plugins: [
new workbox.expiration.Plugin({
// Cache only 20 images
maxEntries: 100,
// Cache for a maximum of a week
maxAgeSeconds: 7 * 24 * 60 * 60,
})
],
})
);
} else {
console.log("Workbox didn't load");
}