Rocky_Mountain_Vending/.pnpm-store/v10/files/fe/0a816c3424d8375245b1d04cde89a801ea4aa40b0ffcffffe5ebe783596c081f8ce9a3832cb3bf82973b07077e2e7d89a5a95295489232d667260f0f5533dd
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

60 lines
2.4 KiB
Text

/**
* @license
* Copyright 2020 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Config for new audits that aren't quite ready for
* being enabled by default.
*/
/** @type {LH.Config} */
const config = {
extends: 'lighthouse:default',
audits: [
'autocomplete',
// Preload advice is on hold until https://github.com/GoogleChrome/lighthouse/issues/11960
'preload-fonts',
'uses-rel-preload',
],
categories: {
// @ts-ignore: `title` is required in CategoryJson. setting to the same value as the default
// config is awkward - easier to omit the property here. Will defer to default config.
'performance': {
auditRefs: [
{id: 'uses-rel-preload', weight: 0, group: 'diagnostics'},
// TODO: Remove this when insights aren't hidden by default
// Insight audits.
{id: 'cache-insight', weight: 0, group: 'insights'},
{id: 'cls-culprits-insight', weight: 0, group: 'insights'},
{id: 'document-latency-insight', weight: 0, group: 'insights'},
{id: 'dom-size-insight', weight: 0, group: 'insights'},
{id: 'duplicated-javascript-insight', weight: 0, group: 'insights'},
{id: 'font-display-insight', weight: 0, group: 'insights'},
{id: 'forced-reflow-insight', weight: 0, group: 'insights'},
{id: 'image-delivery-insight', weight: 0, group: 'insights'},
{id: 'inp-breakdown-insight', weight: 0, group: 'insights'},
{id: 'lcp-breakdown-insight', weight: 0, group: 'insights'},
{id: 'lcp-discovery-insight', weight: 0, group: 'insights'},
{id: 'legacy-javascript-insight', weight: 0, group: 'insights'},
{id: 'modern-http-insight', weight: 0, group: 'insights'},
{id: 'network-dependency-tree-insight', weight: 0, group: 'insights'},
{id: 'render-blocking-insight', weight: 0, group: 'insights'},
{id: 'third-parties-insight', weight: 0, group: 'insights'},
{id: 'viewport-insight', weight: 0, group: 'insights'},
],
},
// @ts-ignore: `title` is required in CategoryJson. setting to the same value as the default
// config is awkward - easier to omit the property here. Will defer to default config.
'best-practices': {
auditRefs: [
{id: 'autocomplete', weight: 0, group: 'best-practices-ux'},
{id: 'preload-fonts', weight: 0, group: 'best-practices-ux'},
],
},
},
};
export default config;