bstlboard-front/ngsw-config.json

43 lines
828 B
JSON
Raw Normal View History

2021-10-04 14:23:40 +02:00
{
"$schema": "./node_modules/@angular/service-worker/config/schema.json",
"index": "/index.html",
2021-10-04 14:37:37 +02:00
"dataGroups": [
{
"name": "api",
"urls": [
"/api"
],
"cacheConfig": {
"maxSize": 0,
"maxAge": "0u",
"strategy": "freshness"
}
}
],
2021-10-04 14:23:40 +02:00
"assetGroups": [
{
"name": "app",
"installMode": "prefetch",
"resources": {
"files": [
"/favicon.ico",
"/index.html",
"/manifest.webmanifest",
"/*.css",
"/*.js"
]
}
},
{
"name": "assets",
"installMode": "lazy",
"updateMode": "prefetch",
"resources": {
"files": [
"/assets/**",
"/*.(eot|svg|cur|jpg|png|webp|gif|otf|ttf|woff|woff2|ani)"
]
}
}
]
2021-10-04 14:37:37 +02:00
}