PeerTube/client/src/ngsw-config.json

30 lines
603 B
JSON
Raw Normal View History

2018-02-08 17:31:05 +01:00
{
2021-01-18 11:16:37 +01:00
"$schema": "../node_modules/@angular/service-worker/config/schema.json",
2018-02-08 17:31:05 +01:00
"index": "/index.html",
"assetGroups": [
{
"name": "app",
"installMode": "prefetch",
"resources": {
"files": [
"/index.html",
"/client/assets/images/icons/favicon.png",
"/client/*.css",
"/client/*.js",
2020-02-07 10:00:34 +01:00
"/manifest.webmanifest"
2018-02-08 17:31:05 +01:00
]
}
},
{
"name": "assets",
"installMode": "lazy",
"updateMode": "prefetch",
"resources": {
"files": [
"/client/assets/**"
]
}
}
]
}