Rocky_Mountain_Vending/.pnpm-store/v10/files/4c/1097b5170b9960663e759f5989175269003abcc06fb6e1ab77fd42b61bf8c0c88e5b08d9a438d4fb06d9ac7ab75e3d3d360b72f2e96a2de899251a03eea35d
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

29 lines
1 KiB
Text

import './cpu-profile';
import '../next';
import '../require-hook';
import type { SelfSignedCertificate } from '../../lib/mkcert';
import { initialize } from './router-server';
export interface StartServerOptions {
dir: string;
port: number;
isDev: boolean;
hostname?: string;
allowRetry?: boolean;
customServer?: boolean;
minimalMode?: boolean;
keepAliveTimeout?: number;
selfSignedCertificate?: SelfSignedCertificate;
}
export declare function getRequestHandlers({ dir, port, isDev, onDevServerCleanup, server, hostname, minimalMode, keepAliveTimeout, experimentalHttpsServer, quiet, }: {
dir: string;
port: number;
isDev: boolean;
onDevServerCleanup: ((listener: () => Promise<void>) => void) | undefined;
server?: import('http').Server;
hostname?: string;
minimalMode?: boolean;
keepAliveTimeout?: number;
experimentalHttpsServer?: boolean;
quiet?: boolean;
}): ReturnType<typeof initialize>;
export declare function startServer(serverOptions: StartServerOptions): Promise<void>;