-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.mjs
76 lines (75 loc) · 1.95 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
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
export default defineConfig({
integrations: [
starlight({
title: 'glaucus',
description: 'A simple and lightweight Linux® distribution based on musl libc and toybox',
favicon: '/src/assets/glaucus-logo.svg',
logo: {
src: '/src/assets/glaucus-logo.svg',
},
social: {
codeberg: 'https://codeberg.org/glaucuslinux/glaucus',
discord: 'https://discord.gg/nDKNmNc',
github: 'https://github.com/glaucuslinux/glaucus',
reddit: 'https://www.reddit.com/r/glaucus',
telegram: 'https://t.me/glaucuslinux',
twitter: 'https://twitter.com/glaucuslinux',
youtube: 'https://www.youtube.com/@glaucuslinux',
},
editLink: {
baseUrl: 'https://github.com/glaucuslinux/wiki/tree/main/',
},
lastUpdated: true,
sidebar: [
{
label: "Bootstrap",
link: "/bootstrap",
},
{
label: "cerata Build Notes",
collapsed: true,
autogenerate: { directory: "cerata Build Notes" },
},
{
label: "Contributions",
link: "/online/contributions",
},
{
label: "Filesystem",
link: "/filesystem",
},
{
label: "History",
link: "/history",
},
{
label: "Install",
link: "/install",
},
{
label: "Naming Convention",
link: "/naming-convention",
},
{
label: "Package Management",
link: "/package-management",
},
{
label: "RFCs",
collapsed: true,
autogenerate: { directory: "RFCs" },
},
{
label: "Security",
link: "/security",
},
{
label: "Software",
link: "/software",
},
],
}),
],
});