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
778 B
Text
21 lines
778 B
Text
import * as TraceEngine from '@paulirish/trace_engine';
|
|
|
|
import {polyfillDOMRect} from './polyfill-dom-rect.js';
|
|
|
|
/** @typedef {import('@paulirish/trace_engine').Types.Events.SyntheticLayoutShift} SyntheticLayoutShift */
|
|
/** @typedef {SyntheticLayoutShift & {args: {data: NonNullable<SyntheticLayoutShift['args']['data']>}}} SaneSyntheticLayoutShift */
|
|
/** @typedef {{i18nId: string, values: Record<string, string|number|{__i18nBytes: number}|{__i18nMillis: number}>}} DevToolsIcuMessage */
|
|
|
|
polyfillDOMRect();
|
|
|
|
const TraceProcessor = TraceEngine.Processor.TraceProcessor;
|
|
const TraceHandlers = TraceEngine.Handlers.ModelHandlers;
|
|
const Insights = TraceEngine.Insights;
|
|
const Helpers = TraceEngine.Helpers;
|
|
|
|
export {
|
|
TraceProcessor,
|
|
TraceHandlers,
|
|
Insights,
|
|
Helpers,
|
|
};
|