Files
klz-cables.com/.pnpm-store/v10/files/45/ffd968bbaa7bf0a21793c824b5a39d5a00df837f807ec4a2cc2d158befecab661060145504afe7a4e84c3e87700838e911eaeb4011364eaad501ba3595d676
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
673 B
Plaintext

import type { RouteManifest } from './types';
export type CreateRouteManifestOptions = {
appDirPath?: string;
/**
* Whether to include route groups (e.g., (auth-layout)) in the final route paths.
* By default, route groups are stripped from paths following Next.js convention.
*/
includeRouteGroups?: boolean;
/**
* Base path for the application, if any. This will be prefixed to all routes.
*/
basePath?: string;
};
/**
* Returns a route manifest for the given app directory
*/
export declare function createRouteManifest(options?: CreateRouteManifestOptions): RouteManifest;
//# sourceMappingURL=createRouteManifest.d.ts.map