Rocky_Mountain_Vending/.pnpm-store/v10/files/d0/898498b901a793b33633a43fc221c2629ed692437bbc1ddcfe434e6acc982883250ec0128e437fe5e05c7ff86b3edfa230e63dfcb40d6ca138a151ee2ba48f
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

20 lines
678 B
JavaScript

#!/usr/bin/env node
import '../server/lib/cpu-profile';
export type NextBuildOptions = {
debug?: boolean;
debugPrerender?: boolean;
profile?: boolean;
mangling: boolean;
turbo?: boolean;
turbopack?: boolean;
webpack?: boolean;
experimentalDebugMemoryUsage: boolean;
experimentalAppOnly?: boolean;
experimentalTurbo?: boolean;
experimentalBuildMode: 'default' | 'compile' | 'generate' | 'generate-env';
experimentalUploadTrace?: string;
experimentalNextConfigStripTypes?: boolean;
debugBuildPaths?: string;
};
declare const nextBuild: (options: NextBuildOptions, directory?: string) => Promise<void>;
export { nextBuild };