Files
klz-cables.com/.pnpm-store/v10/files/bd/474517dd600f68cc3a6fb5bd1d1829edd0e0798c14740f2c0b39a059d731948303784969ab86227b40bffe37e7c31a7ee2be745ca9c98b6e653a2cec110927
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

41 lines
1.0 KiB
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