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

38 lines
804 B
TypeScript
Raw Normal View History

2025-11-16 19:30:16 +08:00
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: '/' },
2025-11-16 20:45:53 +08:00
{ text: 'Examples', link: '/markdown-examples' }
2025-11-16 19:30:16 +08:00
],
sidebar: [
{
text: 'Examples',
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: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 20:45:53 +08:00
2025-11-16 19:30:16 +08:00
socialLinks: [
{ icon: 'github', link: 'https://github.com/vuejs/vitepress' }
]
}
})