diff --git a/.vitepress/config.mts b/.vitepress/config.mts index d7afd4f..40bc7f3 100644 --- a/.vitepress/config.mts +++ b/.vitepress/config.mts @@ -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, -}) +});