super-productivity/tools/lighthouse/budget.json
Johannes Millan ae63a304a1 build(lighthouse): raise total resource count budget to 300
Lazy route/feature chunks have drifted from 151 (Mar consolidation) back
to 251, tripping the 250 total-count gate in budget.json. Resource count
is a coarse tripwire on HTTP/2 (size + timing budgets guard real perf);
bump with headroom rather than chasing every +1. Align the duplicate
.lighthouserc total.count (was a stale 220 warn) to the same 300.
2026-06-09 17:07:03 +02:00

49 lines
817 B
JSON

[
{
"path": "/*",
"resourceSizes": [
{
"resourceType": "script",
"budget": 6000
},
{
"resourceType": "stylesheet",
"budget": 100
},
{
"resourceType": "image",
"budget": 300
},
{
"resourceType": "font",
"budget": 520
},
{
"resourceType": "total",
"budget": 7000
}
],
"resourceCounts": [
{
"resourceType": "script",
"budget": 200
},
{
"resourceType": "stylesheet",
"budget": 10
},
{
"resourceType": "image",
"budget": 50
},
{
"resourceType": "font",
"budget": 10
},
{
"resourceType": "total",
"budget": 300
}
]
}
]