This repository has been archived on 2026-05-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
novarix-networks-homepage/node_modules/next/dist/cli/next-build.d.ts
T
Kismet Hasanaj 34dc9aec52 .
2026-05-02 20:07:02 +02:00

23 lines
788 B
JavaScript

#!/usr/bin/env node
import { saveCpuProfile } from '../server/lib/cpu-profile';
export type NextBuildOptions = {
experimentalAnalyze?: boolean;
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;
experimentalCpuProf?: boolean;
};
declare const nextBuild: (options: NextBuildOptions, directory?: string) => Promise<void>;
export { nextBuild, saveCpuProfile };