-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
39 lines (38 loc) · 1.17 KB
/
astro.config.mjs
File metadata and controls
39 lines (38 loc) · 1.17 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
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import gruvbox from "starlight-theme-gruvbox";
// https://astro.build/config
export default defineConfig({
site: 'https://esk-project.github.io',
trailingSlash: 'always',
integrations: [
starlight({
plugins: [gruvbox()],
customCss: [
'/src/styles/fonts.css',
],
title: 'ESK Kernel Docs',
social: [{ icon: 'github', label: 'GitHub', href: 'https://github.com/ESK-Project/' }],
sidebar: [
{
label: 'Guides',
items: [
{
label: 'Flashing Guide',
items: [
{ label: 'Overview', slug: 'guides/esk' },
{ label: 'Downloads and Naming', slug: 'guides/esk/downloads-and-naming' },
{ label: 'Prerequisites', slug: 'guides/esk/prerequisites' },
{ label: 'Choose AnyKernel3 or Boot Image', slug: 'guides/esk/choose-package' },
{ label: 'Kernel Flavours', slug: 'guides/esk/kernel-flavours' },
{ label: 'Flashing Instructions', slug: 'guides/esk/flashing' },
{ label: 'Reporting Issues and Risk', slug: 'guides/esk/reporting-and-risk' },
],
},
],
},
],
}),
],
});