-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathastro.config.mjs
81 lines (80 loc) · 2.04 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
77
78
79
80
81
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
export default defineConfig({
site: "https://wiki.glaucuslinux.org/",
integrations: [
starlight({
title: 'glaucus Linux',
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/edit/main/',
},
lastUpdated: true,
sidebar: [
{
label: "Bootstrap",
link: "/bootstrap",
},
{
label: "Build Notes",
collapsed: true,
autogenerate: { directory: "build-notes" },
},
{
label: "Contributions",
link: "/online/contributions",
},
{
label: "Filesystem",
link: "/filesystem",
},
{
label: "Flags",
link: "/flags",
},
{
label: "History",
link: "/history",
},
{
label: "Install",
link: "/install",
},
{
label: "Nomenclature",
link: "/nomenclature",
},
{
label: "Package Management",
link: "/package-management",
},
{
label: "RFCs",
collapsed: true,
autogenerate: { directory: "rfcs" },
},
{
label: "Security",
link: "/security",
},
{
label: "Software",
link: "/software",
},
],
}),
],
});