The in-app docs now run on Nuxt Content instead of a custom marked parser.
What is included
- Route-backed docs pages under
/docsand/docs/[slug] - Markdown files stored under
content/docs/ content.config.tscollections for English and Simplified Chinese docs- SEO metadata and prerender coverage for the docs routes
- Shared sidebar navigation generated from the same content source
Locale behavior
The public site currently launches in English and Simplified Chinese. The docs source follows the same rule: English is always available, Simplified Chinese is added where it exists, and retired locale routes should redirect back to the canonical English or Simplified Chinese path.
How to add a page
- Add a markdown file under
content/docs/en/ - Add the matching Chinese file under
content/docs/zh/if you want localized content - Use frontmatter for
title,label,description, andorder
---
title: Billing guide
label: Billing
description: Explain plans, invoices, and credits.
order: 4
---
## Overview
Add your content here.
Where to extend next
If docs volume grows, the next step is to build on the same Nuxt Content workflow with search, navigation metadata, or remote content sources instead of replacing the stack again.
