Files
flower-rain/docs/.vitepress/config.ts
2025-11-16 20:57:56 +08:00

49 lines
1.1 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" },
{ text: "吴子妍", link: "/wzy" },
{ text: "潘绅翰", link: "/psh" },
{ text: "郑子墨", link: "/zzm" },
{ text: "石亚玲", link: "/syl" },
],
},
{
text: 'ex',
items: [
{ text: '龚涵博', link :'/ghb'}
]
}
],
socialLinks: [
{ icon: "github", link: "https://github.com/vuejs/vitepress" },
],
},
});