创建 Linux 和 区块链 运维的样例
This commit is contained in:
@@ -26,6 +26,19 @@ export default defineNavbarConfig([
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
text: '运维',
|
||||
items: [
|
||||
{
|
||||
text: '区块链运维',
|
||||
link: '/ops/blockchain/',
|
||||
},
|
||||
{
|
||||
text: 'Linux 运维',
|
||||
link: '/ops/linux/',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
text: '工具',
|
||||
link: '/tools/',
|
||||
|
||||
@@ -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],
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user