How to reduce execution time, sometimes it takes over 30 seconds to perform lighthouse audits. #15769
Unanswered
jichangjuan
asked this question in
Q&A
Replies: 1 comment
-
Using a config like this should help: const config = {
extends: 'lighthouse:default',
settings: {
// Page load will time out after 10s instead of 30s
maxWaitForLoad: 10_000,
},
} |
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
-
I use Lighthouse Node CLI to run performance and accessibility audits. However, it takes more than 30s to finish . I want to know whether I can set some config to reduce the time. Thanks a lot.
Beta Was this translation helpful? Give feedback.
All reactions