Files
SiMengWebSite_Notes/docs/.vuepress/navbar.ts
祀梦 5578a63c1d docs(ai): 添加 RAGFlow MCP 部署文档与 AI 栏目整理
- 新增 Windows 11 RAGFlow + MCP 完整部署记录
- 添加 AI 栏目首页与免费模型 API 文档
- 更新 VuePress 配置与 collections 结构
- 添加缓存清理和文档同步脚本
2026-03-29 13:21:46 +08:00

81 lines
1.2 KiB
TypeScript

import { defineNavbarConfig } from 'vuepress-theme-plume'
export default defineNavbarConfig([
{
text: '首页',
link: '/',
},
{
text: '博客',
link: '/blog/',
},
{
text: '模型',
link: '/ai/',
},
{
text: '学科知识',
items: [
{
text: '英语学习笔记',
link: '/subject/english/',
},
{
text: '系统分析师',
link: '/subject/certification/',
},
],
},
{
text: '编程笔记',
items: [
{
text: 'Solidity',
link: '/programming/solidity/',
},
{
text: 'Web 开发',
link: '/programming/web/',
}
],
},
{
text:"技术理论",
items:[
{
text: '密码学基础',
link: '/theory/cryptography/',
},
]
},
{
text: '运维',
items: [
{
text: '区块链运维',
link: '/ops/blockchain/',
},
{
text: 'Linux 运维',
link: '/ops/linux/',
},
{
text: 'Docker 运维',
link: '/ops/docker/',
},
],
},
{
text: '工具',
link: '/tools/',
},
{
text: '关于',
link: '/about/',
},
{
text: '友情链接',
link: '/friends/',
},
])