mirror of
https://github.com/RhenCloud/Cloud-Index.git
synced 2025-12-06 23:36:10 +08:00
31 lines
1.0 KiB
TypeScript
31 lines
1.0 KiB
TypeScript
/**
|
|
* @see https://theme-plume.vuejs.press/config/navigation/ 查看文档了解配置详情
|
|
*
|
|
* Navbar 配置文件,它在 `.vuepress/plume.config.ts` 中被导入。
|
|
*/
|
|
|
|
import { defineNavbarConfig } from "vuepress-theme-plume";
|
|
|
|
export default defineNavbarConfig([
|
|
{ text: "首页", link: "/" },
|
|
{
|
|
text: "📖 文档",
|
|
items: [
|
|
{ text: "项目介绍", link: "/guide/introduction" },
|
|
{ text: "快速开始", link: "/guide/quickstart" },
|
|
{ text: "安装指南", link: "/guide/installation" },
|
|
{ text: "配置指南", link: "/guide/configuration" },
|
|
{ text: "部署指南", link: "/guide/deployment" },
|
|
],
|
|
},
|
|
{
|
|
text: "☁️ 存储后端",
|
|
items: [
|
|
{ text: "后端概览", link: "/storage/overview" },
|
|
{ text: "Cloudflare R2", link: "/storage/r2" },
|
|
{ text: "Amazon S3", link: "/storage/s3" },
|
|
{ text: "GitHub", link: "/storage/github" },
|
|
],
|
|
},
|
|
]);
|