build(lighthouse): increase resource count budgets

Build now produces 251 script and 295 total resources due to Angular
code-splitting. Raise thresholds to 270/320 to match current output.
This commit is contained in:
Johannes Millan 2026-03-12 10:54:00 +01:00
parent 4072244868
commit 9d488fc237
2 changed files with 4 additions and 4 deletions

View file

@ -21,8 +21,8 @@
"cumulative-layout-shift": ["warn", { "maxNumericValue": 0.1 }],
"total-blocking-time": ["warn", { "maxNumericValue": 300 }],
"interactive": ["warn", { "maxNumericValue": 5000 }],
"resource-summary.script.count": ["warn", { "maxNumericValue": 140 }],
"resource-summary.total.count": ["warn", { "maxNumericValue": 150 }],
"resource-summary.script.count": ["warn", { "maxNumericValue": 270 }],
"resource-summary.total.count": ["warn", { "maxNumericValue": 320 }],
"resource-summary.font.size": ["warn", { "maxNumericValue": 520000 }]
}
},

View file

@ -26,7 +26,7 @@
"resourceCounts": [
{
"resourceType": "script",
"budget": 160
"budget": 270
},
{
"resourceType": "stylesheet",
@ -42,7 +42,7 @@
},
{
"resourceType": "total",
"budget": 220
"budget": 320
}
]
}