Quick Start
This guide will help you quickly get started with this project.
Requirements
- Node.js 18 or higher
- npm or pnpm
Install Dependencies
bash
npm installStart Development Server
bash
npm run docs:devVisit http://localhost:5173 to view the documentation site.
Build for Production
bash
npm run docs:buildThe build artifacts will be output to the docs/.vitepress/dist directory.
Preview Production Version
bash
npm run docs:previewAdding New Documents
- Create a new
.mdfile in thedocs/directory. - Update the sidebar configuration in
docs/.vitepress/config.js.
Tip
VitePress supports using Vue components in Markdown, allowing you to create richer interactive content.