Hacker News new | ask | show | jobs
by rhdunn 1842 days ago
Is there a way to run lighthouse 8.0.0 on older versions of Chrome for local (development) websites, so we can test them now instead of waiting until Chrome 93 is released?
2 comments

In addition to the other comment, you could also install Chrome Canary to use the latest Lighthouse + Chrome.

If you don't have Canary installed, the CLI will use Chrome Stable. If Canary is present, that is the default. This can be configured with CHROME_PATH.

Run the terminal command in the README of the repo on your sites.
That works. Thanks.