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
1.1 KiB
Text
10 lines
1.1 KiB
Text
import { _PerformanceEntry, _PerformanceMark, _PerformanceMeasure, _PerformanceResourceTiming, _Performance, _PerformanceObserver, _PerformanceObserverEntryList } from "./_polyfills.mjs";
|
|
export { _PerformanceEntry, _PerformanceMark, _PerformanceMeasure, _PerformanceResourceTiming, _Performance, _PerformanceObserver, _PerformanceObserverEntryList } from "./_polyfills.mjs";
|
|
export const PerformanceEntry = globalThis.PerformanceEntry || _PerformanceEntry;
|
|
export const PerformanceMark = globalThis.PerformanceMark || _PerformanceMark;
|
|
export const PerformanceMeasure = globalThis.PerformanceMeasure || _PerformanceMeasure;
|
|
export const PerformanceResourceTiming = globalThis.PerformanceResourceTiming || _PerformanceResourceTiming;
|
|
export const PerformanceObserver = globalThis.PerformanceObserver || _PerformanceObserver;
|
|
export const Performance = globalThis.Performance || _Performance;
|
|
export const PerformanceObserverEntryList = globalThis.PerformanceObserverEntryList || _PerformanceObserverEntryList;
|
|
export const performance = globalThis.performance && "addEventListener" in globalThis.performance ? globalThis.performance : new _Performance();
|