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" },
|
2025-11-16 20:12:30 +08:00
|
|
|
{ text: "龚涵博", link: "/ghb" },
|
2025-11-16 19:52:42 +08:00
|
|
|
{ text: "吴禹谷", link: "/wyg" },
|
2025-11-16 20:13:21 +08:00
|
|
|
{ text: "黄睿", link: "/hr" },
|
2025-11-16 19:52:42 +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" },
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
});
|