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>
10 lines
675 B
Text
10 lines
675 B
Text
import { performance, Performance, PerformanceEntry, PerformanceMark, PerformanceMeasure, PerformanceObserver, PerformanceObserverEntryList, PerformanceResourceTiming } from "../web/performance/index.mjs";
|
|
globalThis.performance ||= performance;
|
|
globalThis.Performance ||= Performance;
|
|
globalThis.PerformanceEntry ||= PerformanceEntry;
|
|
globalThis.PerformanceMark ||= PerformanceMark;
|
|
globalThis.PerformanceMeasure ||= PerformanceMeasure;
|
|
globalThis.PerformanceObserver ||= PerformanceObserver;
|
|
globalThis.PerformanceObserverEntryList ||= PerformanceObserverEntryList;
|
|
globalThis.PerformanceResourceTiming ||= PerformanceResourceTiming;
|
|
export default globalThis.performance;
|