Files
klz-cables.com/.pnpm-store/v10/files/a2/51b7989ebb5a66350a4cc4ec9a8409892d17bab4b1ddc739341b93c2c5bd9749ab07837a76550b828f3d1d4471e19a34077bf59e5b9011680d45ea79863744
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

17 lines
679 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