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

76 lines
1.9 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({
2025-12-07 18:07:16 +08:00
title: "梨花雨",
description: "软件设计与创新实验室",
2025-11-16 19:30:16 +08:00
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
2025-12-07 18:07:16 +08:00
{ text: "主页", link: "/" },
{ text: "文档", link: "/intro/welcome" },
2025-11-16 19:30:16 +08:00
],
sidebar: [
{
2025-12-07 18:07:16 +08:00
text: "介绍",
2025-11-16 19:30:16 +08:00
items: [
2025-12-07 18:07:16 +08:00
{ text: "欢迎", link: "/intro/welcome" },
{ text: "关于", link: "/intro/about" },
2025-11-16 19:52:42 +08:00
],
},
2025-11-16 20:45:53 +08:00
{
text: "黄睿",
items: [{ text: "金华人才网数据表分析", link: "/hr/hr" }],
},
{
2025-12-07 18:07:16 +08:00
text: "龚涵博",
items: [{ text: "龚涵博", link: "/ghb/ghb" }],
},
2025-12-07 18:07:16 +08:00
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: [
2025-12-07 18:07:16 +08:00
{ text: "jinhua", link: "/石亚玲/syl-11-22-add_jh_tables_analyse" },
{ text: "算法", link: "/石亚玲/syl" },
{ text: "日程表", link: "/石亚玲/schedule" },
],
},
2025-12-07 18:07:16 +08:00
{
text: "吴禹谷",
items: [{ text: "test", link: "/wyg/test" }],
},
{
text: "吴子妍",
items: [
{ text: "吴子妍", link: "/wzy/wyz" },
{ text: "note3-tables", link: "/wzy/note3-tables" },
],
},
{
text: "潘绅翰",
items: [{ text: "psh示例", link: "/psh/psh" }],
},
{
text: "郑子墨",
items: [
2025-12-05 16:30:25 +08:00
{ text: "网站文件更新", link: "/zzm/zzm1" },
{ text: "表分析", link: "zzm/zzm2" },
2025-12-07 18:07:16 +08:00
],
},
{
text: "李嘉丽",
items: [{ text: "李嘉丽", link: "/ljl/ljl" }],
},
{
text: "梅凯杰",
items: [{ text: "梅凯杰", link: "/mkj/mkj" }],
},
2025-11-16 19:30:16 +08:00
],
socialLinks: [
2025-12-07 18:07:16 +08:00
{ icon: "gitee", link: "https://gitee.com/gushenfree/flower-rain" },
2025-11-16 19:52:42 +08:00
],
},
});