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
19 lines
687 B
Plaintext
19 lines
687 B
Plaintext
import { 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
|