-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
56 lines (52 loc) · 1.08 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
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'Titanium Network // Documentation',
social: {
github: 'https://github.com/titaniumnetwork-dev/',
discord: 'https://discord.gg/unblock',
youtube: 'https://www.youtube.com/channel/UC6LaREFvs9L72SK1s2PcxNg',
twitter: 'https://twitter.com/titaniumnetdev'
},
customCss: [
'./src/assets/styles.css'
],
sidebar: [
{
label: "Home",
items: [
"index"
]
},
{
label: 'Ultraviolet',
autogenerate: { directory: 'uv'},
},
{
label: 'Rammerhead',
//
autogenerate: {directory: "rh"}
},
{
label: 'Scramjet',
autogenerate: { directory: "scramjet"},
},
{
label: 'Aero',
autogenerate: { directory: "aero"}
},
{
label: 'Protocols',
autogenerate: { directory: "protocols"}
},
{
label: 'Guides',
autogenerate: { directory: 'guides' }
}
],
}),
],
});