-
Notifications
You must be signed in to change notification settings - Fork 2
/
sw-precache-config.js
50 lines (48 loc) · 1.05 KB
/
sw-precache-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
/**
* @license
*
* Copyright (c) 2017-present, Abdón Rodríguez Davila (@abdonrd).
*
* This source code is licensed under the MIT license found in the LICENSE file
* in the root directory of this source tree.
*/
/* eslint-env node */
module.exports = {
staticFileGlobs: [
'bower_components/webcomponentsjs/webcomponents-loader.js',
'images/*',
'images/manifest/*',
'manifest.json'
],
runtimeCaching: [
{
urlPattern: /\/bower_components\/webcomponentsjs\/.*.js/,
handler: 'fastest',
options: {
cache: {
name: 'webcomponentsjs-polyfills-cache'
}
}
},
{
urlPattern: /\/data\/images\/pokemons\/.*/,
handler: 'cacheFirst',
options: {
cache: {
maxEntries: 200,
name: 'pokemons-images'
}
}
},
{
urlPattern: /polymer-pokedex\.firebaseio\.com\/pokemon.*\.json/,
handler: 'cacheFirst',
options: {
cache: {
maxEntries: 200,
name: 'pokemons-data'
}
}
}
]
};