Files
flower-rain/docs/.vitepress/config.ts
2025-12-05 16:30:25 +08:00

66 lines
1.7 KiB
TypeScript

import { defineConfig } from "vitepress";
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "Flower Rain",
description: "Ruan Chuang",
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: "Home", link: "/" },
{ text: "Examples", link: "/markdown-examples" },
],
sidebar: [
{
text: "Examples",
items: [
{ text: "Markdown Examples", link: "/markdown-examples" },
{ text: "Runtime API Examples", link: "/api-examples" },
{ text: "龚涵博", link: "/ghb" },
{ text: "吴禹谷", link: "/wyg" },
{ text: "黄睿", link: "/hr/hr" },
{ text: "吴子妍", link: "/wzy" },
{ text: "潘绅翰", items: [{ text: "psh示例", link: "/psh" }] },
{ text: "石亚玲", link: "/syl" },
],
},
{
text: "黄睿",
items: [{ text: "金华人才网数据表分析", link: "/hr/hr" }],
},
{
text: "ex",
items: [{ text: "龚涵博", link: "/ghb" }],
},
{
text: "郑子墨",
items: [
{ text: "网站文件更新", link: "/zzm/zzm1" },
{ text: "表分析", link: "zzm/zzm2" },
],
},
{
text: "石亚玲",
items: [
{ text: "jinhua", link: "石亚玲/syl-11-22-add_jh_tables_analyse" },
{ text: "算法", link: "石亚玲/syl" },
{ text: "日程表", link: "石亚玲/schedule" },
],
},
{ text: '龚涵博', link :'/ghb'}
]
,
socialLinks: [
{ icon: "github", link: "https://github.com/vuejs/vitepress" },
],
},
});