-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.mjs
35 lines (34 loc) · 1010 Bytes
/
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
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'Ulauncher',
social: {
github: 'https://github.com/Ulauncher/Ulauncher',
},
sidebar: [
{
label: 'Color Themes',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Overview', slug: 'themes/themes' },
{ label: 'Creating custom themes', slug: 'themes/custom' },
{ label: 'Migrating themes', slug: 'themes/migrate' },
],
},
{
label: 'Extension Development',
items: [
{ label: 'Overview', slug: 'extensions/overview' },
{ label: 'Development Tutorial', slug: 'extensions/tutorial' },
{ label: 'Testing & Logging', slug: 'extensions/debugging' },
{ label: 'Examples', slug: 'extensions/examples' },
{ label: 'Migrating extensions', slug: 'extensions/migration' },
],
}
],
}),
],
});