Rocky_Mountain_Vending/.pnpm-store/v10/files/69/7356397c30d949e45dc51a26abbdd0426de8c96db7366c29b26e1bf9296472ac041c16563d2b020659f6ba81cb2eff706090643c2121980fa0916c792d2fd9
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

47 lines
1.6 KiB
Text

/**
* @license
* Copyright 2016 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
// TODO(COMPAT): This is just a shell. Remove in future breaking release.
import {Audit} from '../audit.js';
import * as i18n from '../../lib/i18n/i18n.js';
const UIStrings = {
/** Description of the First Meaningful Paint (FMP) metric, which marks the time at which a majority of the content has been painted by the browser. This is displayed within a tooltip when the user hovers on the metric name to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */
description: 'First Meaningful Paint measures when the primary content of a page is ' +
'visible. [Learn more about the First Meaningful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/first-meaningful-paint/).',
};
const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);
class FirstMeaningfulPaint extends Audit {
/**
* @return {LH.Audit.Meta}
*/
static get meta() {
return {
id: 'first-meaningful-paint',
title: str_(i18n.UIStrings.firstMeaningfulPaintMetric),
description: str_(UIStrings.description),
scoreDisplayMode: Audit.SCORING_MODES.NUMERIC,
supportedModes: ['navigation'],
requiredArtifacts: ['Trace', 'DevtoolsLog', 'GatherContext', 'URL'],
};
}
/**
* @return {Promise<LH.Audit.Product>}
*/
static async audit() {
return {
score: null,
notApplicable: true,
};
}
}
export default FirstMeaningfulPaint;
export {UIStrings};