Rocky_Mountain_Vending/.pnpm-store/v10/files/e4/ec028e5038099068b8da6a32b6684fb3dd191e15c52fc5d8942ec5ce1df108d157c75f94da5c53280afb01fb345d8995b3c68d3b41414176328e4a2be79c59
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

54 lines
1.9 KiB
Text

import type { FallbackMode } from '../../lib/fallback';
import type { Params } from '../../server/request/params';
import type { DynamicParamTypes } from '../../shared/lib/app-router-types';
type StaticPrerenderedRoute = {
readonly params: Params;
readonly pathname: string;
readonly encodedPathname: string;
readonly fallbackRouteParams: undefined;
readonly fallbackMode: FallbackMode | undefined;
readonly fallbackRootParams: undefined;
/**
* When enabled, the route will be rendered with diagnostics enabled which
* will error the build if the route that is generated is empty.
*/
throwOnEmptyStaticShell: undefined;
};
export type FallbackRouteParam = {
/**
* The name of the param.
*/
readonly paramName: string;
/**
* The type of the param.
*/
readonly paramType: DynamicParamTypes;
/**
* Whether this is a parallel route param or descends from a parallel route
* param.
*/
readonly isParallelRouteParam: boolean;
};
type FallbackPrerenderedRoute = {
readonly params: Params;
readonly pathname: string;
readonly encodedPathname: string;
/**
* The fallback route params for the route. This includes both the parallel
* route params and the non-parallel route params.
*/
readonly fallbackRouteParams: readonly FallbackRouteParam[];
readonly fallbackMode: FallbackMode | undefined;
readonly fallbackRootParams: readonly string[];
/**
* When enabled, the route will be rendered with diagnostics enabled which
* will error the build if the route that is generated is empty.
*/
throwOnEmptyStaticShell: boolean;
};
export type PrerenderedRoute = StaticPrerenderedRoute | FallbackPrerenderedRoute;
export type StaticPathsResult = {
fallbackMode: FallbackMode | undefined;
prerenderedRoutes: PrerenderedRoute[] | undefined;
};
export {};