super-productivity/ngsw-config.json

53 lines
980 B
JSON

{
"index": "/index.html",
"assetGroups": [
{
"name": "app",
"installMode": "prefetch",
"resources": {
"files": [
"/favicon.ico",
"/index.html",
"/*.css",
"/*.js"
]
}
},
{
"name": "assets",
"installMode": "lazy",
"updateMode": "prefetch",
"resources": {
"files": [
"/assets/**"
]
}
},
{
"name": "externalAssets",
"installMode": "lazy",
"updateMode": "prefetch",
"resources": {
"urls": [
"https://fonts.googleapis.com/**",
"https://fonts.gstatic.com/**"
]
}
}
],
"dataGroups": [
{
"name": "issueProviderAndAssets",
"urls": [
"https://**",
"http://**",
"!https://apis.google.com/**"
],
"cacheConfig": {
"maxSize": 4000,
"maxAge": "30d",
"timeout": "9s"
}
}
]
}