Files
SiMengWebSite_Notes/docs/.vuepress/navbar.ts
祀梦 4a674ccc7a feat(docs): 添加docker运维文档及相关资源文件
添加docker运维相关文档,包括:
1. 创建docs/resources目录下的.gitkeep文件
2. 更新.gitattributes添加视频文件类型
3. 在导航栏添加docker运维入口
4. 新增docker运维文档目录结构
5. 添加mongodb和ETLCloud部署指南
2025-12-25 09:48:06 +08:00

81 lines
1.3 KiB
TypeScript

import { defineNavbarConfig } from 'vuepress-theme-plume'
export default defineNavbarConfig([
{
text: '首页',
link: '/',
},
{
text: '博客',
link: '/blog/',
},
{
text: '学科知识',
items: [
{
text: '英语学习笔记',
link: '/subject/english/',
},
],
},
{
text: '编程笔记',
items: [
{
text: 'LeetCode',
link: '/programming/leetcode/',
},
{
text: 'C++',
link: '/programming/cplusplus/',
},
{
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/',
},
])