-
Notifications
You must be signed in to change notification settings - Fork 58
/
astro.config.mjs
81 lines (80 loc) · 2.61 KB
/
astro.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
site: 'https://csbaoyan.top/',
base: '/',
integrations: [
starlight({
components: {
// 重写默认的 `SocialIcons` 组件。
Footer: './src/components/Footer.astro',
},
title: 'CSWiki',
social: {
github: 'https://github.com/CS-BAOYAN/CS-BAOYAN-2025',
},
editLink: {
baseUrl: 'https://github.com/CS-BAOYAN/CS-BAOYAN-2025/edit/main/',
},
logo: {
src: './src/assets/houston.png',
},
favicon: '/favicon.ico',
sidebar: [
{
label: '关于我们',
slug: '关于我们',
},
{
label: '贡献指南',
items: [
{ label: '基本配置与部署', slug: '贡献指南/基本配置' },
{ label: '撰写文档', slug: '贡献指南/撰写文档' },
{ label: '提交 Pull Request', slug: '贡献指南/提交贡献' },
{ label: '提交 Issue', slug: '贡献指南/提交需求' },
{ label: '保研经验贴贡献流程', slug: '贡献指南/保研经验贴' },
],
},
{
label: '保研经验贴',
items: [
{ label: '总览', slug: '保研经验贴/总览' },
{ label: '2024年保研总结贴', slug: '保研经验贴/2024年' },
{ label: '2023年保研总结贴', slug: '保研经验贴/2023年' },
{ label: '2022年保研总结贴', slug: '保研经验贴/2022年' },
{ label: '2021年保研总结贴', slug: '保研经验贴/2021年' },
{ label: '2020年保研总结贴', slug: '保研经验贴/2020年' },
{ label: '2019年保研总结贴', slug: '保研经验贴/2019年' },
{ label: '2018年保研总结贴', slug: '保研经验贴/2018年' },
{ label: '2017年保研总结贴', slug: '保研经验贴/2017年' },
],
},
{
label: '保研指南',
items: [
{ label: '基础概念', slug: '保研指南/基础概念'},
{ label: '保研黑话', slug: '保研指南/保研黑话'},
{ label: '保研时刻表', slug: '保研指南/保研时刻表'},
{ label: '素养掌握', slug: '保研指南/素养掌握'},
{ label: '科研二三事', slug: '保研指南/科研二三事'},
{ label: '院校解析', slug: '保研指南/院校解析'},
],
},
{
label: '导师招生广告',
autogenerate: { directory: '导师招生广告' },
},
{
label: '保研工具箱',
autogenerate: { directory: '保研工具箱' },
},
{
label: '信息汇总',
autogenerate: { directory: '信息汇总' },
},
],
}),
],
});