Rocky_Mountain_Vending/.pnpm-store/v10/files/5f/ca24f7b201574320d018b43c11ff0bc4e4f34ac0bb221034b0018ddcbcda965d089382bffec927303d1da72998ef6a72f9ae51f0535cce919f797f45b966f6
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

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;