Documentation Build
This guide explains how to build and deploy the Kodosumi documentation using Fumadocs.
Prerequisites
Before building the documentation, ensure you have the following installed:
Installation
Install dependencies from the project root:
npm install
# or
pnpm installLocal Development
To run the documentation locally for development:
npm run dev
# or
pnpm devThe documentation will be available at http://localhost:3000.
Building for Production
To build the documentation for production deployment:
npm run build
# or
pnpm buildThis will run fumadocs-mdx, generate OpenAPI docs, and create a production build in the .next directory.
Getting Help
- Check the Fumadocs documentation
- Review the Fumadocs MDX guide
- Report issues to the Kodosumi GitHub repository

