- 更新Maven标题为"Maven常用配置" - 调整侧边栏图标与结构 - 修改试题、Linux、Docker等模块的图标 - 设置Docker模块默认折叠 - 新增Jellyfin音乐目录规范文档 - 新增20250523试题文档 - 新增Google浏览器强制背景黑色设置方法
63 lines
1.7 KiB
TypeScript
63 lines
1.7 KiB
TypeScript
import {sidebar} from "vuepress-theme-hope";
|
|
|
|
export default sidebar({
|
|
"/programming/": [
|
|
{
|
|
text: "Java",
|
|
collapsible: true,
|
|
expanded: true,
|
|
icon: "mdi:language-java",
|
|
prefix: "java/",
|
|
children: [
|
|
{
|
|
text: "框架",
|
|
icon: "simple-icons:framework",
|
|
collapsible: true,
|
|
prefix: "框架/",
|
|
children: "structure",
|
|
},
|
|
{
|
|
text: "工具箱",
|
|
icon: "mdi:tools",
|
|
collapsible: true,
|
|
prefix: "工具箱/",
|
|
children: "structure",
|
|
},
|
|
{
|
|
text: "试题",
|
|
icon: "ic:baseline-question-answer",
|
|
collapsible: true,
|
|
prefix: "AI试题/",
|
|
children: "structure",
|
|
},
|
|
]
|
|
},
|
|
{
|
|
text: "Linux",
|
|
collapsible: true,
|
|
expanded: true,
|
|
icon: "devicon:linux",
|
|
prefix: "linux/",
|
|
children: [
|
|
{
|
|
text: "凝思",
|
|
icon: "simple-icons:linux",
|
|
collapsible: true,
|
|
prefix: "凝思/",
|
|
children: "structure",
|
|
},
|
|
]
|
|
},
|
|
{
|
|
text: "Docker",
|
|
// 可折叠
|
|
collapsible: true,
|
|
//是否展开
|
|
expanded: false,
|
|
icon: "devicon:docker",
|
|
prefix: "docker/",
|
|
children: "structure",
|
|
}
|
|
]
|
|
});
|