Files
marketplaces/ngsw-config.json
2026-02-26 21:54:21 +04:00

57 lines
1.1 KiB
JSON

{
"$schema": "./node_modules/@angular/service-worker/config/schema.json",
"index": "/index.html",
"assetGroups": [
{
"name": "app",
"installMode": "prefetch",
"resources": {
"files": [
"/favicon.ico",
"/index.html",
"/manifest.webmanifest",
"/*.css",
"/*.js"
]
}
},
{
"name": "assets",
"installMode": "lazy",
"updateMode": "prefetch",
"resources": {
"files": [
"/**/*.(svg|cur|jpg|jpeg|png|apng|webp|avif|gif|otf|ttf|woff|woff2)"
]
}
}
],
"dataGroups": [
{
"name": "api-cache",
"urls": [
"/api/**"
],
"cacheConfig": {
"maxSize": 100,
"maxAge": "1h",
"timeout": "10s",
"strategy": "freshness"
}
},
{
"name": "product-images",
"urls": [
"https://**/*.jpg",
"https://**/*.png",
"https://**/*.webp"
],
"cacheConfig": {
"maxSize": 200,
"maxAge": "7d",
"strategy": "performance"
}
}
]
}