Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
21 lines
493 B
Text
21 lines
493 B
Text
/**
|
|
* @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;
|