Skip to content

Instantly share code, notes, and snippets.

@j9t
Last active May 4, 2026 08:35
Show Gist options
  • Select an option

  • Save j9t/baa8210df26b88aa6fdefeef5ba33542 to your computer and use it in GitHub Desktop.

Select an option

Save j9t/baa8210df26b88aa6fdefeef5ba33542 to your computer and use it in GitHub Desktop.
module.exports = {
extends: 'lighthouse:default',
settings: {
'scores': {
'performance': 90,
'accessibility': 90,
'best-practices': 90,
'seo': 80
},
'onlyCategories': [
'performance',
'accessibility',
'best-practices',
'seo'
],
'skipAudits': [
'byte-efficiency/uses-responsive-images',
'byte-efficiency/uses-webp-images',
'seo/meta-description'
]
},
};
@j9t
Copy link
Copy Markdown
Author

j9t commented Aug 19, 2021

This configuration was set up for Lighthouse 3.x.x. I’m pretty sure it worked with Lighthouse 4.x.x. It’s untested for later releases.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment