Files
flower-rain/docs/.vitepress/config.ts

58 lines
1.6 KiB
TypeScript
Raw Normal View History

2025-11-16 19:52:42 +08:00
import { defineConfig } from "vitepress";
2025-11-16 19:30:16 +08:00
// 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" },
2025-11-16 19:30:16 +08:00
],
sidebar: [
{
2025-11-16 19:52:42 +08:00
text: "Examples",
2025-11-16 19:30:16 +08:00
items: [
{ text: "Markdown Examples", link: "/markdown-examples" },
{ text: "Runtime API Examples", link: "/api-examples" },
2025-11-16 20:57:56 +08:00
{ text: "龚涵博", link: "/ghb" },
2025-11-16 19:52:42 +08:00
{ text: "吴禹谷", link: "/wyg" },
2025-11-23 15:21:45 +08:00
{ text: "黄睿", link: "/hr/hr" },
{ text: "吴子妍", link: "/wzy" },
{ text: "潘绅翰", items: [{ text: "psh示例", link: "/psh" }] },
{ text: "郑子墨", link: "/zzm" },
{ text: "石亚玲", link: "/syl" },
2025-11-16 19:52:42 +08:00
],
},
2025-11-16 20:45:53 +08:00
{
text: "黄睿",
items: [{ text: "金华人才网数据表分析", link: "/hr/hr" }],
},
{
text: "ex",
items: [{ text: "龚涵博", link: "/ghb" }],
},
2025-11-16 20:45:53 +08:00
{
text: "吴子妍",
items: [{ text: "第三次研讨会笔记", link: "/note3-tables" }],
2025-11-26 18:38:25 +08:00
},
{
2025-11-22 21:37:57 +08:00
text: "石亚玲",
2025-11-16 20:45:53 +08:00
items: [
{ text: "jinhua", link: "石亚玲/syl-11-22-add_jh_tables_analyse" },
{ text: "算法", link: "石亚玲/syl" },
{ text: "日程表", link: "石亚玲/schedule" },
],
},
2025-11-16 19:30:16 +08:00
],
socialLinks: [
2025-11-16 19:52:42 +08:00
{ icon: "github", link: "https://github.com/vuejs/vitepress" },
],
},
});