-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
workbox.config.ts
72 lines (69 loc) · 1.85 KB
/
workbox.config.ts
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
/* eslint-env node */
import type { GenerateSWOptions } from 'workbox-build';
const ONE_WEEK = 60 * 60 * 24 * 7;
// Firebase Reserved URLs https://firebase.google.com/docs/hosting/reserved-urls
const FIREBASE_RESERVED_URLS = /^\/__\/.*/;
const FIREBASE_COFIG_URL = '/__/firebase/init.json';
const STATIC_EXPIRATION = {
maxAgeSeconds: ONE_WEEK,
maxEntries: 200,
};
export const workboxConfig: GenerateSWOptions = {
mode: 'debug', // TODO: Remove mode
swDest: 'dist/service-worker.js',
navigateFallback: '/index.html',
navigateFallbackDenylist: [FIREBASE_RESERVED_URLS],
skipWaiting: true,
clientsClaim: true,
offlineGoogleAnalytics: true,
globDirectory: 'dist',
globPatterns: ['**/*.{html,js,css,json,svg,md}'],
runtimeCaching: [
{
urlPattern: /\/images\/.*/,
handler: 'NetworkFirst',
options: {
cacheName: 'images-cache',
expiration: STATIC_EXPIRATION,
},
},
{
urlPattern: /https:\/\/maps\.googleapis\.com\/maps.*/,
handler: 'NetworkFirst',
options: {
cacheName: 'google-maps-cache',
expiration: STATIC_EXPIRATION,
},
},
{
urlPattern: FIREBASE_COFIG_URL,
handler: 'NetworkFirst',
options: {
cacheName: 'firebase-cache',
expiration: {
maxAgeSeconds: ONE_WEEK,
maxEntries: 10,
},
},
},
{
urlPattern: /https:\/\/firebasestorage\.googleapis\.com\/.*/,
handler: 'NetworkFirst',
options: {
cacheName: 'firebase-storage-cache',
expiration: STATIC_EXPIRATION,
},
},
{
urlPattern: /https:\/\/storage\.googleapis\.com\/.*/,
handler: 'NetworkFirst',
options: {
cacheName: 'google-storage-cache',
cacheableResponse: {
statuses: [0, 200],
},
expiration: STATIC_EXPIRATION,
},
},
],
};