-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
47 lines (46 loc) · 1.16 KB
/
astro.config.mjs
File metadata and controls
47 lines (46 loc) · 1.16 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
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
site: 'https://sorubedo.github.io',
base: '/obedur-docs',
integrations: [
starlight({
title: 'obedur-os Docs',
social: [{ icon: 'github', label: 'GitHub', href: 'https://github.com/sorubedo/obedur-os' }],
sidebar: [
{
label: '开始使用',
items: [
{ label: '简介', slug: 'index' },
{ label: '安装指南', slug: 'getting-started' },
{ label: '初始化指南', slug: 'initialization' },
{ label: '系统预览', slug: 'screenshots' },
{ label: '使用技巧', slug: 'tips' },
{ label: '开发者寄语', slug: 'developer-notes' },
],
},
{
label: '系统特性',
items: [
{ label: 'Niri 窗口管理器', slug: 'features/niri' },
{ label: 'Noctalia Shell', slug: 'features/noctalia' },
],
},
{
label: '常见问题',
slug: 'faq',
},
{
label: '致谢',
slug: 'credits',
},
{
label: '参考',
autogenerate: { directory: 'reference' },
},
],
}),
],
});