-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathastro.config.mjs
More file actions
91 lines (90 loc) · 2.83 KB
/
astro.config.mjs
File metadata and controls
91 lines (90 loc) · 2.83 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
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
// @ts-check
import { defineConfig } from 'astro/config';
import mermaid from 'astro-mermaid';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
integrations: [
mermaid({
theme: 'forest',
autoTheme: true
}),
starlight({
title: 'FOSDEM Volunteers Docs',
customCss: ['./src/styles/fosdem-theme.css'],
logo: {
src: '/public/FOSDEM-cog.svg',
alt: 'FOSDEM Logo',
},
favicon: '/public/favicon.ico',
social: [{ icon: 'github', label: 'GitHub', href: 'https://github.com/FOSDEM/volunteers-doc' }],
sidebar: [
{
label: 'Getting Started',
collapsed: false,
items: [
{ label: 'Introduction', slug: 'general/introduction' },
{ label: 'Important Dates', slug: 'general/important-dates' },
{ label: 'Communication', slug: 'general/communication' },
{ label: 'Logistics', slug: 'general/logistics' },
{ label: 'Code of Conduct', slug: 'general/coc' },
],
},
{
label: '🚨 Emergency Info',
collapsed: false,
items: [
{ label: 'Emergency Overview', slug: 'emergencies/emergency-intro' },
{ label: 'Medical Emergencies', slug: 'emergencies/medical' },
{ label: 'Fire Procedures', slug: 'emergencies/fire' },
{ label: 'Evacuation Plan', slug: 'emergencies/evacuation' },
],
},
{
label: 'Volunteer Roles',
items: [
{ label: 'All Roles Overview', slug: 'tasks/tasklist' },
{
label: 'Setup & Teardown Tasks',
collapsed: true,
items: [
{ label: 'Van Loading (Thursday)', slug: 'tasks/buildup-cleanup/van-loading' },
{
label: 'Buildup (Friday)',
collapsed: true,
items: [
{ label: 'Buildup Overview', slug: 'tasks/buildup-cleanup/buildup' },
{ label: 'Devroom Setup', slug: 'tasks/buildup-cleanup/buildup-devroom' },
{ label: 'Devroom K Setup', slug: 'tasks/buildup-cleanup/buildup-devroom-k' },
{ label: 'Stand Setup', slug: 'tasks/buildup-cleanup/buildup-stand' },
],
},
{ label: 'Signage', slug: 'tasks/buildup-cleanup/signage' },
{ label: 'Cleanup (Sunday)', slug: 'tasks/buildup-cleanup/cleanup' },
{ label: 'Van Unloading (Monday)', slug: 'tasks/buildup-cleanup/van-unloading' },
],
},
{
label: 'On-Site Tasks',
autogenerate: { directory: 'tasks/onsite', collapsed: true },
collapsed: true,
},
{
label: 'Remote Tasks',
autogenerate: { directory: 'tasks/virtual', collapsed: true },
collapsed: true,
},
{
label: 'Video Team Tasks',
collapsed: true,
items: [
{ label: 'Video Overview', slug: 'video/video' },
{ label: 'Equipment Guide', slug: 'video/equipment-overview' },
],
},
],
},
],
}),
],
});