UNPKG

lighthouse

Version:

Automated auditing, performance metrics, and best practices for the web.

22 lines (18 loc) 493 B
/** * @license * Copyright 2020 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import * as LH from '../../types/lh.js'; import * as constants from './constants.js'; /** @type {LH.Config} */ const config = { extends: 'lighthouse:default', settings: { formFactor: 'desktop', throttling: constants.throttling.desktopDense4G, screenEmulation: constants.screenEmulationMetrics.desktop, emulatedUserAgent: constants.userAgents.desktop, }, }; export default config;