mirror of
https://github.com/RhenCloud/Cloud-Index.git
synced 2025-12-06 15:26:10 +08:00
- 在 overview.md 中添加 OneDrive 到存储后端对比 - 更新导航栏和 plume.config 以包含 OneDrive 链接 - 创建详细的 OneDrive 配置指南 - 从 GitHub 和 S3 文档中删除冗余章节 - 将 .env 和缓存目录添加到 .gitignore
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/deployment/overview" },
|
|
{ text: "配置指南", link: "/guide/configuration/configuration" },
|
|
],
|
|
},
|
|
{
|
|
text: "☁️ 存储后端",
|
|
items: [
|
|
{ text: "后端概览", link: "/storage/overview" },
|
|
{ text: "Cloudflare R2", link: "/storage/r2" },
|
|
{ text: "Amazon S3", link: "/storage/s3" },
|
|
{ text: "GitHub", link: "/storage/github" },
|
|
{ text: "OneDrive", link: "/storage/onedrive" },
|
|
],
|
|
},
|
|
]);
|