初始化文档

This commit is contained in:
2025-11-09 14:21:55 +08:00
commit e97717dfe7
26 changed files with 8747 additions and 0 deletions

30
docs/.vuepress/navbar.ts Normal file
View File

@@ -0,0 +1,30 @@
/**
* @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" },
],
},
]);