-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathastro.config.mjs
57 lines (56 loc) · 1.23 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
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
site: 'http://fluentcrm.top',
integrations: [
starlight({
title: 'FluentCRM Docs',
favicon: './src/assets/favicon/favicon.ico',
// social: {
// github: 'https://github.com/shuvoaftab/fluentcrm-dev-docs',
// },
customCss: [
// Relative path to your custom CSS file
'./src/styles/custom.css',
],
sidebar: [
{
label: 'Get Started',
items: [
// Each item here is one entry in the navigation menu.
{ label: 'Start', slug: 'index/start' },
],
},
{
label: 'Settings',
autogenerate: { directory: 'settings' },
},
{
label: 'Contacts',
autogenerate: { directory: 'contacts' },
},
{
label: 'Company',
autogenerate: { directory: 'company' },
},
{
label: 'Emails',
autogenerate: { directory: 'emails' },
},
{
label: 'Automation',
autogenerate: { directory: 'automation' },
},
{
label: 'Miscellaneous',
autogenerate: { directory: 'misc' },
},
{
label: 'Glossary',
autogenerate: { directory: 'glossary' },
},
],
}),
],
});