-
Notifications
You must be signed in to change notification settings - Fork 4
/
astro.config.mjs
90 lines (88 loc) · 2.49 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
export default defineConfig({
integrations: [
starlight({
title: 'Angor Documentation',
customCss: ['./src/styles/custom.scss'],
logo: {
dark: './src/assets/logo.svg',
light: './src/assets/logo.svg',
replacesTitle: true,
},
social: {
twitter: 'https://twitter.com/blockcoredev',
discord: 'https://www.blockcore.net/discord',
github: 'https://github.com/block-core/angor',
},
components: {
Header: './src/components/overrides/Header.astro',
Footer: 'src/components/overrides/Footer.astro',
ThemeSelect: 'src/components/overrides/ThemeSelect.astro',
},
sidebar: [
{
label: 'Quick Start',
autogenerate: { directory: 'start' },
},
{
label: 'Investor',
collapsed: true,
autogenerate: { directory: 'investor' },
},
{
label: 'Founder',
collapsed: true,
autogenerate: { directory: 'founder' },
},
{
label: 'Developer',
collapsed: true,
autogenerate: { directory: 'developer' },
},
{
label: 'FAQs',
collapsed: true,
autogenerate: { directory: 'faqs' },
},
{
label: 'Support',
collapsed: true,
autogenerate: { directory: 'support' },
},
// {
// label: 'Getting started',
// autogenerate: { directory: 'getting-started' },
// },
// {
// label: 'Creating a project',
// autogenerate: { directory: 'creating-a-project' },
// },
// {
// label: 'Investing in a project',
// autogenerate: { directory: 'investing-in-a-project' },
// },
// {
// label: 'Project updates',
// autogenerate: { directory: 'project-updates' },
// },
// {
// label: 'Fees and charges',
// autogenerate: { directory: 'fees-and-charges' },
// },
// {
// label: 'Security and control',
// autogenerate: { directory: 'security-and-control' },
// },
// {
// label: 'FAQs',
// autogenerate: { directory: 'faqs' },
// },
// {
// label: 'Support',
// autogenerate: { directory: 'support' },
// },
],
}),
],
});