Rocky_Mountain_Vending/.pnpm-store/v10/files/31/d1dab51e80610363d9f38160e821f970b5068b22708814d6223688652032d780e79178475912c2ced7c991d3b9dccbb6f84497b824145c5af93619782e9300
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

59 lines
2.7 KiB
Text

import type { NextConfigComplete } from '../../config-shared';
import type { UnwrapPromise } from '../../../lib/coalesced-function';
import type { ProxyMatcher } from '../../../build/analysis/get-page-static-info';
import type { RoutesManifest } from '../../../build';
import type { MiddlewareRouteMatch } from '../../../shared/lib/router/utils/middleware-route-matcher';
import type { PropagateToWorkersField } from './types';
import type { NextJsHotReloaderInterface } from '../../dev/hot-reloader-types';
import type { Telemetry } from '../../../telemetry/storage';
import type { IncomingMessage, ServerResponse } from 'http';
import type { LazyRenderServerInstance } from '../router-server';
export type SetupOpts = {
renderServer: LazyRenderServerInstance;
dir: string;
turbo?: boolean;
appDir?: string;
pagesDir?: string;
telemetry: Telemetry;
isCustomServer?: boolean;
fsChecker: UnwrapPromise<ReturnType<typeof import('./filesystem').setupFsCheck>>;
nextConfig: NextConfigComplete;
port: number;
onDevServerCleanup: ((listener: () => Promise<void>) => void) | undefined;
resetFetch: () => void;
};
export interface DevRoutesManifest {
version: number;
caseSensitive: RoutesManifest['caseSensitive'];
basePath: RoutesManifest['basePath'];
rewrites: RoutesManifest['rewrites'];
redirects: RoutesManifest['redirects'];
headers: RoutesManifest['headers'];
i18n: RoutesManifest['i18n'];
skipProxyUrlNormalize: RoutesManifest['skipProxyUrlNormalize'];
}
export type ServerFields = {
actualMiddlewareFile?: string | undefined;
actualInstrumentationHookFile?: string | undefined;
appPathRoutes?: Record<string, string | string[]>;
middleware?: {
page: string;
match: MiddlewareRouteMatch;
matchers?: ProxyMatcher[];
} | undefined;
hasAppNotFound?: boolean;
interceptionRoutes?: ReturnType<typeof import('./filesystem').buildCustomRoute>[];
setIsrStatus?: (key: string, value: boolean | undefined) => void;
resetFetch?: () => void;
};
export declare function propagateServerField(opts: SetupOpts, field: PropagateToWorkersField, args: any): Promise<void>;
export declare function setupDevBundler(opts: SetupOpts): Promise<{
serverFields: ServerFields;
hotReloader: NextJsHotReloaderInterface;
requestHandler: (req: IncomingMessage, res: ServerResponse) => Promise<{
finished: boolean;
}>;
logErrorWithOriginalStack: (err: unknown, type?: "unhandledRejection" | "uncaughtException" | "warning" | "app-dir") => void;
ensureMiddleware(requestUrl?: string): Promise<void>;
}>;
export type DevBundler = Awaited<ReturnType<typeof setupDevBundler>>;