-
Notifications
You must be signed in to change notification settings - Fork 0
/
sw.js
47 lines (40 loc) · 984 Bytes
/
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
const cacheName = "entrefest-ar-cache";
importScripts('https://storage.googleapis.com/workbox-cdn/releases/5.0.0/workbox-sw.js');
if (workbox) {
console.log("got workbox");
} else {
console.log("didn't get workbox");
}
workbox.routing.registerRoute(
/\.js$/,
new workbox.strategies.NetworkFirst({
cacheName: cacheName + "-js",
networkTimeoutSeconds: 5
})
);
workbox.routing.registerRoute(
/\.html$/,
new workbox.strategies.NetworkFirst({
cacheName: cacheName + "-html",
networkTimeoutSeconds: 5
})
);
workbox.routing.registerRoute(
/\.glb$/,
new workbox.strategies.NetworkFirst({
cacheName: cacheName + "-models",
networkTimeoutSeconds: 5
})
);
workbox.routing.registerRoute(
/\.png$/,
new workbox.strategies.NetworkFirst({
cacheName: cacheName + "-images",
networkTimeoutSeconds: 5
})
);
workbox.precaching.precacheAndRoute([
{url: "./index.html"},
{url: "./manifest.json"},
{url: "./sw.js"}
]);