-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbudget.json
More file actions
72 lines (72 loc) · 2.16 KB
/
budget.json
File metadata and controls
72 lines (72 loc) · 2.16 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
66
67
68
69
70
71
72
[
{
"path": "/*",
"comment": "Performance budgets set to current baseline (measured 2026-02-10) + 15% buffer. These represent current performance, not aspirational targets. Future optimizations should lower these values.",
"timings": [
{
"metric": "first-contentful-paint",
"budget": 5100,
"comment": "Baseline: 4446ms (EN), 3850ms (SV). Budget: 5100ms (worst-case + 15%)"
},
{
"metric": "largest-contentful-paint",
"budget": 5400,
"comment": "Baseline: 4643ms (EN), 4382ms (SV). Budget: 5400ms (worst-case + 15%)"
},
{
"metric": "interactive",
"budget": 5400,
"comment": "Baseline: 4643ms (EN), 4682ms (SV). Budget: 5400ms (worst-case + 15%)"
},
{
"metric": "cumulative-layout-shift",
"budget": 0.1,
"comment": "Target: < 0.1 (passing, aspirational target maintained)"
},
{
"metric": "total-blocking-time",
"budget": 200,
"comment": "Target: < 200ms (passing, aspirational target maintained)"
}
],
"resourceSizes": [
{
"resourceType": "document",
"budget": 105,
"comment": "Baseline: 92KB (EN). Budget: 105KB (baseline + 15%)"
},
{
"resourceType": "script",
"budget": 300,
"comment": "No failures reported, maintaining current budget"
},
{
"resourceType": "stylesheet",
"budget": 370,
"comment": "Baseline: 313KB (SV), 312KB (EN). Budget: 370KB (baseline + 15%)"
},
{
"resourceType": "image",
"budget": 500,
"comment": "No failures reported, maintaining current budget"
},
{
"resourceType": "font",
"budget": 100,
"comment": "No failures reported, maintaining current budget"
},
{
"resourceType": "total",
"budget": 1200,
"comment": "Conservative increase to accommodate measured resource sizes"
}
],
"resourceCounts": [
{
"resourceType": "third-party",
"budget": 10,
"comment": "No failures reported, maintaining current budget"
}
]
}
]