- Introduced blog routing using Next.js App Router - Implemented dynamic [slug] pages for blog posts - Added MDX-based content loading via lib/posts - Integrated shared TopBar layout with navigation - Established clear content, lib and component separation
13 lines
368 B
JavaScript
13 lines
368 B
JavaScript
#!/usr/bin/env node
|
|
import '../server/lib/cpu-profile';
|
|
export type NextAnalyzeOptions = {
|
|
experimentalAnalyze?: boolean;
|
|
profile?: boolean;
|
|
mangling: boolean;
|
|
port: number;
|
|
output: boolean;
|
|
experimentalAppOnly?: boolean;
|
|
};
|
|
declare const nextAnalyze: (options: NextAnalyzeOptions, directory?: string) => Promise<void>;
|
|
export { nextAnalyze };
|