- Full-featured monitoring dashboard for local web apps - Real-time status tracking with uptime percentages - Visual sparklines for status history - Add/Edit/Delete apps dynamically - Categories and color coding - Auto-refresh every 30 seconds - API endpoints for apps and status management
16 lines
503 B
JavaScript
16 lines
503 B
JavaScript
#!/usr/bin/env node
|
|
import '../server/lib/cpu-profile';
|
|
export type NextBuildOptions = {
|
|
debug?: boolean;
|
|
profile?: boolean;
|
|
lint: boolean;
|
|
mangling: boolean;
|
|
experimentalDebugMemoryUsage: boolean;
|
|
experimentalAppOnly?: boolean;
|
|
experimentalTurbo?: boolean;
|
|
experimentalBuildMode: 'default' | 'compile' | 'generate';
|
|
experimentalUploadTrace?: string;
|
|
};
|
|
declare const nextBuild: (options: NextBuildOptions, directory?: string) => Promise<void>;
|
|
export { nextBuild };
|