-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb-design.config.json
More file actions
65 lines (65 loc) · 1.11 KB
/
Copy pathweb-design.config.json
File metadata and controls
65 lines (65 loc) · 1.11 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"schemaVersion": 1,
"projectSlug": "fathom",
"projectChecks": [
{
"name": "fathom website",
"command": [
"npm",
"run",
"check",
"--prefix",
"website"
]
}
],
"performance": {
"outputDirectory": "website/dist",
"criticalFiles": [
"index.html"
],
"allowedExtensions": [
".css",
".html",
".ico",
".jpg",
".js",
".json",
".png",
".svg",
".txt",
".webp",
".woff2",
".xml"
],
"budgets": {
"totalRawBytes": 1572864,
"totalGzipBytes": 589824,
"criticalGzipBytes": 46080,
"extensions": {
".html": {
"rawBytes": 102400
},
".css": {
"rawBytes": 61440
},
".js": {
"rawBytes": 49152,
"gzipBytes": 20480
},
".woff2": {
"rawBytes": 204800
},
".jpg": {
"rawBytes": 180224
},
".png": {
"rawBytes": 524288
},
".webp": {
"rawBytes": 524288
}
}
}
}
}