-
Notifications
You must be signed in to change notification settings - Fork 32
/
astro.config.mts
164 lines (163 loc) · 4.7 KB
/
astro.config.mts
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import rehypeSlug from 'rehype-slug';
import { rehypeAutolink } from './plugins/rehype-autolink';
import tailwind from '@astrojs/tailwind';
import starlightLinksValidator from 'starlight-links-validator'
import starlightImageZoom from 'starlight-image-zoom'
import icon from "astro-icon";
// https://astro.build/config
export default defineConfig({
site: "https://nfdi4plants.github.io",
base: '/nfdi4plants.knowledgebase',
integrations: [
icon(),
starlight({
title: 'DataPLANT',
favicon: "favicon.png",
customCss: [
// Relative path to your custom CSS file
'./src/styles/tailwind.css',
'./src/styles/custom.css',
],
components: {
MarkdownContent: '@components/starlight/MarkdownContent.astro',
Footer: '@components/starlight/Footer.astro',
},
editLink: {
baseUrl: 'https://github.com/nfdi4plants/nfdi4plants.knowledgebase/edit/main/'
},
social: {
github: 'https://github.com/nfdi4plants/nfdi4plants.knowledgebase',
},
plugins: [
starlightLinksValidator(),
starlightImageZoom(),
],
sidebar: [
{
label: 'Start Here',
badge: { text: 'New!', variant: 'tip' },
autogenerate: { directory: 'start-here' },
},
{
label: 'Core Concepts',
autogenerate: { directory: 'core-concepts' },
},
{
label: 'Guides',
autogenerate: { directory: 'guides' },
},
{
label: 'Resources',
// Collapse the group by default.
collapsed: true,
autogenerate: { directory: 'resources' },
},
{
label: 'Git',
// Collapse the group by default.
collapsed: true,
autogenerate: { directory: 'git' },
},
{
label: 'CWL',
// Collapse the group by default.
collapsed: true,
autogenerate: { directory: 'cwl' },
},
{
label: 'Fundamentals',
// Collapse the group by default.
collapsed: true,
autogenerate: { directory: 'fundamentals' },
},
{
label: 'ARCitect',
// Collapse the group by default.
collapsed: true,
autogenerate: { directory: 'arcitect' },
},
{
label: 'ARC Validation',
// Collapse the group by default.
collapsed: true,
autogenerate: { directory: 'arc-validation' },
},
{
label: 'DataHUB',
collapsed: true,
// autogenerate: { directory: 'datahub' },
items:[
'datahub',
{
label: 'DataPLANT Account',
collapsed: false,
autogenerate: { directory: 'datahub/account'},
},
{
label: 'Navigation & Settings',
autogenerate: { directory: 'datahub/navigation-settings'},
},
{
label: 'Working together',
autogenerate: { directory: 'datahub/working-together'},
},
{
label: 'ARC files',
autogenerate: { directory: 'datahub/arc-files'},
},
{
label: 'ARC features',
autogenerate: { directory: 'datahub/arc-features'},
},
{
label: 'Data Publications',
autogenerate: { directory: 'datahub/data-publications'},
},
]
},
{
label: 'ARC Commander',
// Collapse the group by default.
collapsed: true,
autogenerate: { directory: 'arc-commander' },
},
{
label: 'Swate',
// Collapse the group by default.
collapsed: true,
autogenerate: { directory: 'swate' },
},
{
label: 'ARCManager',
collapsed: true,
autogenerate: { directory: 'arc-manager' },
},
{
label: 'Vault',
// Collapse the group by default.
collapsed: true,
badge: {text: 'Outdated', variant: 'note'},
autogenerate: { directory: 'vault' },
},
],
expressiveCode: {
defaultProps: {
// Enable wrap for specific languages
overridesByLang: {
'txt,md,bash': { wrap: true },
},
},
},
}),
tailwind({
// Disable the default base styles:
applyBaseStyles: false,
})
],
markdown: {
rehypePlugins: [rehypeSlug, ...rehypeAutolink()],
},
});