how to avoid Reached gathering budget of 5s warning in lighthouse #15528
Unanswered
Haris-Asghar
asked this question in
Q&A
Replies: 1 comment
-
Related issue: #11289 314 images is a lot of images for Lighthouse to collect extra data on so it makes sense that the budget cut it off at 5s. Extrapolating from the 281/384 figure given, it would take ~40-50s just to collect the extra image data on this page. There isn't really a way to prevent this warning unfortunately. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
how to avoid this warning in lighthouse:
LH:artifacts:getArtifact ImageElements +35ms LH:ImageElements:warn Reached gathering budget of 5s. Skipped extra details for 281/314 +6s
and I have following code for generating lighthouse audit report:
async function runLighthouse(url, outputPath, iterations) {
const chrome = await chromeLauncher.launch({ chromeFlags: ["--headless"] });
}
Beta Was this translation helpful? Give feedback.
All reactions