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>
14 lines
No EOL
670 B
Text
14 lines
No EOL
670 B
Text
/**
|
|
* Launch Chrome and do a full Lighthouse run via the Lighthouse DevTools bundle.
|
|
* @param {string} url
|
|
* @param {LH.Config=} config
|
|
* @param {LocalConsole=} logger
|
|
* @param {Smokehouse.SmokehouseOptions['testRunnerOptions']=} testRunnerOptions
|
|
* @return {Promise<{lhr: LH.Result, artifacts: LH.Artifacts}>}
|
|
*/
|
|
export function runLighthouse(url: string, config?: LH.Config | undefined, logger?: LocalConsole | undefined, testRunnerOptions?: Smokehouse.SmokehouseOptions["testRunnerOptions"] | undefined): Promise<{
|
|
lhr: LH.Result;
|
|
artifacts: LH.Artifacts;
|
|
}>;
|
|
import { LocalConsole } from '../lib/local-console.js';
|
|
//# sourceMappingURL=bundle.d.ts.map |