创建 Linux 和 区块链 运维的样例

This commit is contained in:
2025-09-28 08:03:21 -04:00
parent 12fdf56539
commit 3bb7ee6796
7 changed files with 512 additions and 52 deletions

View File

@@ -39,11 +39,35 @@ const solidity = defineNoteConfig({
}
]
})
const blockchain = defineNoteConfig({
dir: 'ops',
link: '/ops/blockchain',
sidebar: [
{ text: "区块链运维指南", link: "/ops/blockchain/" },
{
text: "区块链运维", prefix: "/blockchain", items: [
{ text: "区块链网络部署指南", link: "/ops/blockchain/deployment/" }
]
}
]
})
const linux = defineNoteConfig({
dir: 'ops',
link: '/ops/',
sidebar: [
{ text: "Linux 运维笔记", link: "/ops/linux/" },
{
text: "Linux 基础", prefix: "/linux", items: [
{ text: "Linux 基础命令详解", link: "/ops/linux/basic-commands/" }
]
}
]
})
/**
* 导出所有的 note
*/
export default defineNotesConfig({
dir: 'notes',
link: '/',
notes: [LeetCode, cPlusPlus, solidity],
notes: [LeetCode, cPlusPlus, solidity, blockchain, linux],
})