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

31 lines
790 B
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 19:52:42 +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: [
2025-11-16 19:52:42 +08:00
{ text: "Markdown Examples", link: "/markdown-examples" },
{ text: "Runtime API Examples", link: "/api-examples" },
{ text: "龚涵博", link: "/ghb" },
2025-11-16 19:52:42 +08:00
{ text: "吴禹谷", link: "/wyg" },
],
},
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" },
],
},
});