-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathngsw-config.json
35 lines (35 loc) · 1.06 KB
/
ngsw-config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"$schema": "./node_modules/@angular/service-worker/config/schema.json",
"index": "/index.html",
"assetGroups": [
{
"name": "app",
"installMode": "prefetch",
"updateMode": "prefetch",
"resources": {
"files": [
"/favicon.ico",
"/favicon.svg",
"/index.html",
"/manifest.webmanifest",
"/*.css",
"/*.js"
],
"urls": [
"https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,[email protected],100..700,0..1,-50..200",
"https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap"
]
}
},
{
"name": "assets",
"updateMode": "prefetch",
"installMode": "prefetch",
"resources": {
"files": [
"/assets/**"
]
}
}
]
}