fix the sidebar config

This commit is contained in:
m1ngsama 2025-04-03 16:53:10 +08:00
parent c06e7939da
commit e8627e46e1

View file

@ -1,39 +1,37 @@
import { withMermaid } from "vitepress-plugin-mermaid"
import { sidebar as sidebarArchived } from "../archived/sidebar"
import { withMermaid } from 'vitepress-plugin-mermaid';
import { sidebar as sidebarArchived } from '../archived/sidebar';
import { sidebar as sidebarProcess } from '../process/sidebar';
// https://vitepress.dev/reference/site-config
export default withMermaid({
title: "计算机协会文档",
description: "Documents for nbtca",
title: '计算机协会文档',
description: 'Documents for nbtca',
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: '流程', link: '/process/borrow-classroom' },
{ text: '维修', link: '/repair/guide' },
{ text: '存档', link: '/archived' }
{ text: '存档', link: '/archived' },
],
search: {
provider: "local"
provider: 'local',
},
sidebar: {
'/process/': [
{ text: '借教室', link: '/process/2025/borrow-classroom' },
{ text: '申请第二课堂学分', link: '/process/2025/apply-for-credits' },
'/process/': sidebarProcess,
'/repair/': [
{ text: '维修操作指南', link: '/repair/guide' },
{ text: 'Tools', link: '/repair/tools' },
],
'/archived': sidebarArchived
'/archived': sidebarArchived,
},
editLink: {
pattern: 'https://github.com/nbtca/documents/edit/main/:path',
text: 'Edit this page on GitHub'
text: 'Edit this page on GitHub',
},
socialLinks: [
{ icon: 'github', link: 'https://github.com/nbtca/documents' }
]
{ icon: 'github', link: 'https://github.com/nbtca/documents' },
],
},
ignoreDeadLinks: true,
lastUpdated: true,
})
});