Files
klz-cables.com/.pnpm-store/v10/files/1a/9f6577d721a5d74a5b8cb5a5ae65e0a80e369dac2214230864750a122aad3331df654fd1a038889f04924659fe4b685c6dc621c67af8d33745d805e9df854e
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

40 lines
999 B
Plaintext

/**
* Information about a single route in the manifest
*/
export type RouteInfo = {
/**
* The parameterised route path, e.g. "/users/[id]"
*/
path: string;
/**
* (Optional) The regex pattern for dynamic routes
*/
regex?: string;
/**
* (Optional) The names of dynamic parameters in the route
*/
paramNames?: string[];
/**
* (Optional) Indicates if the first segment is an optional prefix (e.g., for i18n routing)
* When true, routes like '/foo' should match '/:locale/foo' patterns
*/
hasOptionalPrefix?: boolean;
};
/**
* The manifest containing all routes discovered in the app
*/
export type RouteManifest = {
/**
* List of all dynamic routes
*/
dynamicRoutes: RouteInfo[];
/**
* List of all static routes
*/
staticRoutes: RouteInfo[];
/**
* List of ISR/SSG routes (routes with generateStaticParams)
*/
isrRoutes: string[];
};
//# sourceMappingURL=types.d.ts.map