Files
klz-cables.com/.pnpm-store/v10/files/34/88dab8cdf471e32d0284c122fcda2f6d8b5b39c96baeca9fe0a05d5ecbadc3b53b30766ce2bd6a48cd13dbfb0107c46d391f534e2e7fa0630cc66d21060165
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

18 lines
697 B
Plaintext

import { LRUMap } from '@sentry/core';
/**
* Cache for ISR/SSG route checks. Exported for testing purposes.
* @internal
*/
export declare const IS_ISR_SSG_ROUTE_CACHE: LRUMap<string, boolean>;
/**
* Check if the current page is an ISR/SSG route by checking the route manifest.
* @internal Exported for testing purposes.
*/
export declare function isIsrSsgRoute(pathname: string): boolean;
/**
* Remove sentry-trace and baggage meta tags from the DOM if this is an ISR/SSG page.
* This prevents the browser tracing integration from using stale/cached trace IDs.
*/
export declare function removeIsrSsgTraceMetaTags(): void;
//# sourceMappingURL=isrRoutingTracing.d.ts.map