-
Notifications
You must be signed in to change notification settings - Fork 2
/
astro.config.mjs
36 lines (35 loc) · 1.09 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
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'Aurora Docs',
social: {
github: 'https://github.com/ublue-os/bluefin',
},
sidebar: [
{
label: 'Guides',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Introduction to Aurora', slug: 'guides/intro'},
{ label: 'Changing your start icon', slug: 'guides/start-icon'},
{ label: 'Basic Usage', slug: 'guides/basic-usage'},
{ label: 'Installing Software', slug: 'guides/software' },
{ label: 'Layering Packages', slug: 'guides/layerapp' },
{ label: 'KDE Plasma Customization', slug: 'guides/kde-themes' },
{ label: 'Developer Experience', slug: 'guides/developer' },
{ label: 'Devcontainers', slug: 'guides/devcontainers' },
{ label: 'Rescue mode', slug: 'guides/rescue-mode' },
],
},
{
label: 'Reference',
autogenerate: { directory: 'reference' },
},
],
}),
],
});