-
Notifications
You must be signed in to change notification settings - Fork 5
/
workbox-config.js
62 lines (59 loc) · 1.46 KB
/
workbox-config.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
/* eslint-env node */
import * as path from 'path';
const ONE_WEEK = 60 * 60 * 24 * 7;
const FIREBASE_RESERVED_URLS = /\/__\/.*/;
export const workboxConfig = {
swDest: path.join(__dirname, 'dist', 'service-worker.js'),
navigateFallback: '/index.html',
navigateFallbackDenylist: [
FIREBASE_RESERVED_URLS, // Private Firebase URLs
],
skipWaiting: true,
offlineGoogleAnalytics: true,
globDirectory: path.join(__dirname, 'dist'),
globPatterns: ['**/*.{html,js,css,json,svg,md}'],
runtimeCaching: [
{
urlPattern: /\/images\/.*/,
handler: 'NetworkFirst',
options: {
cacheName: 'images-cache',
expiration: {
maxAgeSeconds: ONE_WEEK,
maxEntries: 200,
},
},
},
{
urlPattern: /https:\/\/maps\.googleapis\.com\/maps.*/,
handler: 'NetworkFirst',
options: {
cacheName: 'google-maps-cache',
},
},
{
urlPattern: /\/__\/.*/,
handler: 'NetworkFirst',
options: {
cacheName: 'firebase-cache',
},
},
{
urlPattern: /https:\/\/firebasestorage\.googleapis\.com\/.*/,
handler: 'NetworkFirst',
options: {
cacheName: 'firebase-storage-cache',
},
},
{
urlPattern: /https:\/\/storage\.googleapis\.com\/.*/,
handler: 'NetworkFirst',
options: {
cacheName: 'google-storage-cache',
cacheableResponse: {
statuses: [0, 200],
},
},
},
],
};