PeerTube/client/src/ngsw-config.json

30 lines
603 B
JSON
Raw Normal View History

2018-02-08 10:31:05 -06:00
{
2021-01-18 04:16:37 -06:00
"$schema": "../node_modules/@angular/service-worker/config/schema.json",
2018-02-08 10:31:05 -06: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 03:00:34 -06:00
"/manifest.webmanifest"
2018-02-08 10:31:05 -06:00
]
}
},
{
"name": "assets",
"installMode": "lazy",
"updateMode": "prefetch",
"resources": {
"files": [
"/client/assets/**"
]
}
}
]
}