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>
20 lines
678 B
JavaScript
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 };
|