super-productivity/ngsw-config.json
2021-12-19 20:15:19 +01:00

35 lines
756 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": "assetsAlwaysNeeded",
"installMode": "prefetch",
"updateMode": "prefetch",
"resources": {
"files": [
"/assets/icons/*.svg",
"/assets/i18n/en.json",
"/assets/unicorn.png",
"/assets/fonts/MaterialIcons-Regular.ttf",
"/*.(otf|ttf|woff|woff2)"
]
}
}
],
"dataGroups": []
}