Rocky_Mountain_Vending/.pnpm-store/v10/files/28/01ad23af5636661594cc294b658a73b24076ab18e721a71010fbf84730f6196ceb604bb00cd66de03d0b0a2261e4661fdeffd37120dfc2406f30b2cbdb59a5
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

19 lines
632 B
JavaScript

#!/usr/bin/env node
import '../server/lib/cpu-profile';
export type NextDevOptions = {
disableSourceMaps: boolean;
turbo?: boolean;
turbopack?: boolean;
webpack?: boolean;
port: number;
hostname?: string;
experimentalHttps?: boolean;
experimentalHttpsKey?: string;
experimentalHttpsCert?: string;
experimentalHttpsCa?: string;
experimentalUploadTrace?: string;
experimentalNextConfigStripTypes?: boolean;
};
type PortSource = 'cli' | 'default' | 'env';
declare const nextDev: (options: NextDevOptions, portSource: PortSource, directory?: string) => Promise<void>;
export { nextDev };