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
|
import { defineConfig } from 'vitepress'
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "Knowledge Base",
description: "Another Knowledge Base",
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'Home', link: '/' },
],
sidebar: [
{
text: 'Projects',
items: [
{ text: 'Patchwork Archive API', link: '/repos/patchwork-archive-api' },
{ text: 'I Miss Someone VT (Legacy)', link: '/repos/i-miss-someone-vt' },
{ text: 'VTuber Captcha', link: '/repos/vtuber-captcha' }
]
},
{
text: 'Personal',
items: [
{text: 'Fun Tools', link: '/personal/tools.md'}
]
}
],
socialLinks: [
{ icon: 'github', link: 'https://github.com/pinapelz' }
]
}
})
|