Files
DeEarthX-CE/word/.vitepress/config.mts
15736060610 4654f36202
Some checks failed
CI/CD / Code Check (push) Has been cancelled
CI/CD / Build Windows (push) Has been cancelled
项目迁移
2026-03-14 21:11:59 +08:00

47 lines
1.3 KiB
TypeScript

import { defineConfig } from 'vitepress'
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "DeEarthX-CE",
description: "DeEarthX-CE 项目文档",
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: '首页', link: '/' },
{ text: '文档', link: '/guide/introduction' },
{ text: 'API', link: '/api/core' },
{ text: '贡献', link: '/contributing' }
],
sidebar: {
'/guide/': [
{
text: '指南',
items: [
{ text: '项目介绍', link: '/guide/introduction' },
{ text: '安装指南', link: '/guide/installation' },
{ text: '使用教程', link: '/guide/usage' },
{ text: '模板编写教程', link: '/guide/template-tutorial' },
{ text: '常见问题', link: '/guide/faq' },
{ text: '开发者指南', link: '/guide/developer' }
]
}
],
'/api/': [
{
text: 'API 文档',
items: [
{ text: '核心模块', link: '/api/core' },
{ text: '后端 API', link: '/api/backend' },
{ text: '前端 API', link: '/api/frontend' }
]
}
]
},
socialLinks: [
{ icon: 'github', link: 'https://github.com' }
]
}
})