The Lighthouse config object is the primary method of customizing Lighthouse to suit your use case. Using a custom config, you can limit the audits to run, add additional loads of the page under special conditions, add your own custom checks, tweak the scoring, and more.
Read more about the architecture of Lighthouse.
You can specify a custom config file when using Lighthouse through the CLI or consuming the npm module yourself.
custom-config.js file
export default {
extends: 'lighthouse:default',
settings: {
onlyAudits: [
'first-meaningful-paint',
'speed-index',
'interactive',
],
},
};
Use config file via CLI
lighthouse --config-path=path/to/custom-config.js https://example.com
Use config file via Node
import lighthouse from 'lighthouse';
import config from './path/to/custom-config.js';
await lighthouse('https://example.com/', {port: 9222}, config);
Name | Type | |
---|---|---|
extends | string|undefined |
|
settings | Object|undefined |
|
artifacts | Object[] |
|
audits | string[] |
|
categories | Object|undefined |
|
groups | Object|undefined |
|
plugins | string[] |
Includes plugins and their audits. Refer to the plugin documentation for details. |
The extends
property controls if your configuration should inherit from the default Lighthouse configuration. Learn more.
{
extends: 'lighthouse:default',
}
The settings property controls various aspects of running Lighthouse such as CPU/network throttling and which audits should run.
{
settings: {
onlyCategories: ['performance'],
onlyAudits: ['works-offline'],
}
}
For full list see our config settings typedef.
Name | Type | Description |
---|---|---|
onlyCategories | string[] |
Includes only the specified categories in the final report. Additive with onlyAudits and reduces the time to audit a page. |
onlyAudits | string[] |
Includes only the specified audits in the final report. Additive with onlyCategories and reduces the time to audit a page. |
skipAudits | string[] |
Excludes the specified audits from the final report. Takes priority over onlyCategories , not usable in conjunction with onlyAudits , and reduces the time to audit a page. |
The list of artifacts to collect on a single Lighthouse run. This property is required and on extension will be concatenated with the existing set of artifacts.
{
artifacts: [
{id: 'Accessibility', gatherer: 'accessibility'},
{id: 'AnchorElements', gatherer: 'anchor-elements'},
]
}
Name | Type | Description |
---|---|---|
id | string |
Unique identifier for this artifact. This is how the artifact is referenced in audits. |
gatherer | string |
Gatherer used to produce this artifact. Does not need to be unique within the artifacts list. |
The audits property controls which audits to run and include with your Lighthouse report. See more examples to see how to add custom audits to your config.
{
audits: [
'first-contentful-paint',
'byte-efficiency/uses-optimized-images',
]
}
The categories property controls how to score and organize the audit results in the report. Each category defined in the config will have an entry in the categories
property of Lighthouse's output. The category output contains the child audit results along with an overall score for the category.
Note: many modules consuming Lighthouse have no need to group or score all the audit results; in these cases, it's fine to omit a categories section.
{
categories: {
performance: {
title: 'Performance',
description: 'This category judges your performance',
auditRefs: [
{id: 'first-meaningful-paint', weight: 2, group: 'metrics'},
{id: 'first-contentful-paint', weight: 3, group: 'metrics'},
{id: 'interactive', weight: 5, group: 'metrics'},
],
}
}
}
Name | Type | Description |
---|---|---|
title | string |
The display name of the category. |
description | string |
The displayed description of the category. |
supportedModes | string[] (optional, user flows) |
The modes supported by the category. Category will support all modes if this is not provided. |
auditRefs | Object[] |
The audits to include in the category. |
auditRefs[$i].id | string |
The ID of the audit to include. |
auditRefs[$i].weight | number |
The weight of the audit in the scoring of the category. |
auditRefs[$i].group | string (optional) |
The ID of the display group of the audit. |
The groups property controls how to visually group audits within a category. For example, this is what enables the grouped rendering of metrics and accessibility audits in the report.
Note: The report-renderer has display logic that's hardcoded to specific audit group names. Adding arbitrary groups without additional rendering logic may not perform as expected.
{
categories: {
performance: {
auditRefs: [
{id: 'my-performance-metric', weight: 2, group: 'metrics'},
],
}
},
groups: {
'metrics': {
title: 'Metrics',
description: 'These metrics encapsulate your web app\'s performance across a number of dimensions.'
},
}
}
The stock Lighthouse configurations can be extended if you only need to make small tweaks, such as adding an audit or skipping an audit, but wish to still run most of what Lighthouse offers. When adding the extends: 'lighthouse:default'
property to your config, the artifacts, audits, groups, and categories will be automatically included, allowing you modify settings or add additional audits and artifacts.
Please note that the extends
property only supports extension of lighthouse:default
. Other internal configs found in the core/config directory can be used by importing the config object from file reference, or by using the --preset
CLI flag.
See more examples below to view different types of extensions in action.
Config extension is the recommended way to run custom Lighthouse. If there's a use case that extension doesn't currently solve, we'd love to hear from you!
The best examples are the ones Lighthouse uses itself! There are several reference configuration files that are maintained as part of Lighthouse.