Mintlify
Hosted documentation platform — works with any framework.
Overview
Mintlify is a hosted documentation platform used by Stripe, Twilio, Resend, and hundreds of developer tools companies. It's the simplest docs option — just MDX content + a config file, no framework code.
What You Get
Mintlify generates a docs/ directory in your project with:
How It Works
Unlike Fumadocs and Starlight, Mintlify is a hosted service — your docs are rendered by Mintlify's platform, not your own server. You push MDX files to your repo, and Mintlify auto-deploys them.
- Sign up at mintlify.com/start
- Connect your GitHub repo
- Point Mintlify at the
docs/directory - Push changes → docs auto-deploy to
yourproject.mintlify.app
When to Use Mintlify
- You want the fastest setup — zero framework code, just content
- You want hosted deployment — no Vercel/Netlify needed for docs
- You're using a non-Next.js framework and want beautiful docs
- You want built-in search, analytics, and API reference
- Your team prefers a web editor over code
Configuration
The mint.json file controls navigation, branding, and layout:
{
"$schema": "https://mintlify.com/schema.json",
"name": "my-ui",
"colors": {
"primary": "#171717",
"light": "#FAFAFA",
"dark": "#171717"
},
"navigation": [
{
"group": "Getting Started",
"pages": ["introduction", "installation"]
},
{
"group": "Components",
"pages": ["components/button", "components/card"]
}
]
}Local Preview
npm i -g mint
cd docs
mint devAdding a Doc Page
Create a new .mdx file in docs/components/:
---
title: My Component
description: A description of your component.
---
## Installation
\`\`\`bash
npx shadcn add @my-ui/my-component
\`\`\`Add it to the navigation array in mint.json.
Comparison
| Feature | Fumadocs | Mintlify | Starlight |
|---|---|---|---|
| Self-hosted | ✅ | ❌ (hosted) | ✅ |
| Requires Next.js | ✅ | ❌ | ❌ |
| Component previews | ✅ (inline) | Via iframe | Via iframe |
| Search | Plugin | Built-in | Built-in |
| Web editor | ❌ | ✅ | ❌ |
| API reference | ❌ | ✅ | ❌ |
| Free tier | ✅ (OSS) | ✅ (limited) | ✅ (OSS) |