blob: a737e09e979a4821836b9ad3f36c8d878322c895 (
plain) (
blame)
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
|
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', link: '/repos/i-miss-someone-vt' },
{ text: 'VTuber Captcha', link: '/repos/vtuber-captcha' }
]
}
],
socialLinks: [
{ icon: 'github', link: 'https://github.com/pinapelz' }
]
}
})
|