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

49 lines
1.1 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: [
2025-11-16 20:45:53 +08:00
{ 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' },
2025-11-16 19:57:06 +08:00
{ 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" },
{ text: "黄睿", link: "/hr" },
{ text: "吴子妍", link: "/wzy" },
{ text: "潘绅翰", 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: 'ex',
items: [
2025-11-16 19:57:06 +08:00
{ text: '龚涵博', link :'/ghb'}
2025-11-16 19:30:16 +08:00
]
}
2025-11-16 19:30:16 +08:00
],
2025-11-16 20:45:53 +08:00
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" },
],
},
});