- Fumadocs-based docs with @hanzo/mdx and @hanzo/ui integration - Comprehensive SDK documentation for all packages: - hanzo-agent SDK (agents, tools, guardrails, tracing) - hanzo-mcp tools (filesystem, shell, browser, memory, etc.) - Client, models, embeddings, chat APIs - Tailwind 4 + Next.js 16 + React 19 stack - Static export for GitHub Pages deployment
15 lines
297 B
TypeScript
15 lines
297 B
TypeScript
import { createMDX } from 'fumadocs-mdx/next';
|
|
|
|
const withMDX = createMDX();
|
|
|
|
const config = {
|
|
reactStrictMode: true,
|
|
output: 'export' as const,
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
basePath: process.env.NODE_ENV === 'production' ? '/python-sdk' : '',
|
|
};
|
|
|
|
export default withMDX(config);
|