Rocky_Mountain_Vending/.pnpm-store/v10/files/ca/f0368efae538a2bd3f81303c9e586cfa81afb879b9b12b23d48ebbdd5407ae65f63a060e4ecbd2855030019bed12c59a88a9a19aa0911a8162a23bcefb35a6
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

16 lines
473 B
JavaScript

#!/usr/bin/env node
import '../server/lib/cpu-profile';
export type NextStartOptions = {
port: number;
hostname?: string;
keepAliveTimeout?: number;
experimentalNextConfigStripTypes?: boolean;
};
/**
* Start the Next.js server
*
* @param options The options for the start command
* @param directory The directory to start the server in
*/
declare const nextStart: (options: NextStartOptions, directory?: string) => Promise<void>;
export { nextStart };