- 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
10 lines
322 B
TypeScript
10 lines
322 B
TypeScript
export type AnalyzeOptions = {
|
|
dir: string;
|
|
reactProductionProfiling?: boolean;
|
|
noMangling?: boolean;
|
|
appDirOnly?: boolean;
|
|
output?: boolean;
|
|
port?: number;
|
|
};
|
|
export default function analyze({ dir, reactProductionProfiling, noMangling, appDirOnly, output, port, }: AnalyzeOptions): Promise<void>;
|