-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathastro.config.mjs
42 lines (40 loc) · 1.27 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
37
38
39
40
41
42
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
site: 'https://docs.everyday.agency/',
integrations: [
starlight({
title: 'everyday.agency Documentation',
social: {
github: 'https://github.com/withastro/starlight',
},
sidebar: [
{
label: 'Getting Started',
autogenerate: { directory: 'getting-started' },
},
{
label: 'Configuration',
autogenerate: { directory: 'configuration' },
},
{
label: 'Layout',
autogenerate: { directory: 'layout' },
},
{
label: 'Utilities',
autogenerate: { directory: 'utilities' },
},
{
label: 'Components',
autogenerate: { directory: 'components' },
},
{
label: 'WordPress',
autogenerate: { directory: 'wordpress' },
},
],
}),
],
});