-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathastro.config.mjs
More file actions
77 lines (76 loc) · 1.96 KB
/
astro.config.mjs
File metadata and controls
77 lines (76 loc) · 1.96 KB
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
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
export default defineConfig({
site: "https://wiki.glaucuslinux.org/",
integrations: [
starlight({
title: 'glaucus',
description: 'An opinionated Linux® distribution based on musl libc and toybox',
favicon: '/src/assets/glaucus-logo.svg',
logo: {
src: '/src/assets/glaucus-logo.svg',
},
social: [
{ icon: 'codeberg', label: 'Codeberg', href: 'https://codeberg.org/glaucuslinux/glaucus' },
{ icon: 'github', label: 'GitHub', href: 'https://github.com/glaucuslinux/glaucus' },
{ icon: 'youtube', label: 'YouTube', href: 'https://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: "Filesystem",
link: "/filesystem",
},
{
label: "Flags",
link: "/flags",
},
{
label: "History",
link: "/history",
},
{
label: "Install",
link: "/install",
},
{
label: "Media Coverage",
link: "/online/media-coverage",
},
{
label: "Package Management",
link: "/package-management",
},
{
label: "RFCs",
collapsed: true,
autogenerate: { directory: "rfcs" },
},
{
label: "Security",
link: "/security",
},
{
label: "Software",
link: "/software",
},
{
label: "Upstream Contributions",
link: "/online/upstream-contributions",
},
],
}),
],
});