-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.mjs
50 lines (49 loc) · 1.06 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
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
build: {
assetsPrefix: './assets/'
},
integrations: [
starlight({
title: 'Hubble',
social: {
github: 'https://github.com/hubble-sm',
blueSky: 'https://bsky.app/profile/omgrod.bsky.social',
twitter: 'https://twitter.com/0mgRod',
email: 'mailto:omgrod1000@proton.me',
youtube: 'https://youtube.com/@OmgRodYT',
tiktok: 'https://tiktok.com/@therealomgrod',
reddit: 'https://reddit.com/u/omgrod'
},
sidebar: [
{
label: 'Getting Started',
slug: 'docs'
},
{
label: 'Bots',
items: [
{ label: 'Making Bots', slug: 'docs/bots' },
],
},
{
label: 'Contributing',
items: [
{ label: 'Contributing', slug: 'docs/contributing' },
],
},
{
label: 'Navigating the Website',
items: [
{ label: 'Navigating the Website', slug: 'docs/website' },
],
},
],
}),
],
devToolbar: {
enabled: false
}
});