Initial boiler plate project
This commit is contained in:
14
node_modules/next/dist/cli/next-build.d.ts
generated
vendored
Normal file
14
node_modules/next/dist/cli/next-build.d.ts
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env node
|
||||
import '../server/lib/cpu-profile';
|
||||
type NextBuildOptions = {
|
||||
debug?: boolean;
|
||||
profile?: boolean;
|
||||
lint: boolean;
|
||||
mangling: boolean;
|
||||
experimentalDebugMemoryUsage: boolean;
|
||||
experimentalAppOnly?: boolean;
|
||||
experimentalTurbo?: boolean;
|
||||
experimentalBuildMode: 'default' | 'compile' | 'generate';
|
||||
};
|
||||
declare const nextBuild: (options: NextBuildOptions, directory?: string) => Promise<void>;
|
||||
export { nextBuild };
|
||||
Reference in New Issue
Block a user