Files
SuanDocs/.vitepress/config.mts
MangoFanFanw 891acdfbfd 初始提交
初始提交目前已有的文档和基础设置。
此提交还不包含 .gitignore 等文件。
2026-04-22 13:34:05 +08:00

37 lines
1003 B
TypeScript

import { defineConfig } from 'vitepress'
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "Suan Projects",
description: "AI Projects of Mango Suan",
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'README', link: '/readme' }
],
sidebar: [
{
text: 'NJUPT Suan API',
items: [
{ text: '介绍', link: '/suan-api/introduction' },
{ text: '部署', link: '/suan-api/deploy' },
{ text: 'Playwright', link: '/suan-api/playwright' },
{ text: 'LLM 工具', link: '/suan-api/llm-tools' },
]
},
{
text: 'Astrbot 插件(已归档)',
items: [
{ text: '介绍', link: '/astrbot-plugin/introduction' },
{ text: '图像渲染', link: '/astrbot-plugin/image-render' }
]
}
],
socialLinks: [
{ icon: 'github', link: 'https://github.com/vuejs/vitepress' }
]
}
})