mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-07-09 17:19:02 +00:00
1.1 KiB
1.1 KiB
Qwen Code Docs Site
A documentation website for Qwen Code built with Next.js and Nextra.
Getting Started
Prerequisites
- Node.js 18+
- npm or yarn
Installation
npm install
Setup Content
Prepare the public documentation content from the parent docs directory:
npm run link
This creates a content directory with copies of the public docs sections.
Internal planning, design, and E2E notes remain outside the docs site content
tree.
Development
Start the development server:
npm run dev
Open http://localhost:3000 in your browser to see the documentation site.
Project Structure
docs-site/
├── src/
│ └── app/
│ ├── [[...mdxPath]]/ # Dynamic routing for MDX pages
│ │ └── page.jsx
│ └── layout.jsx # Root layout with navbar and footer
├── mdx-components.js # MDX component configuration
├── next.config.mjs # Next.js configuration
└── package.json
License
MIT © Qwen Team