Created
November 13, 2018 23:36
-
-
Save j9t/baa8210df26b88aa6fdefeef5ba33542 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | |
] | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.