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