-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathastro.config.mjs
More file actions
87 lines (86 loc) · 1.73 KB
/
Copy pathastro.config.mjs
File metadata and controls
87 lines (86 loc) · 1.73 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
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'Schrödinger Hat Wiki',
description: 'Documentation and knowledge base for the Schrödinger Hat community',
logo: {
src: './src/assets/logo.svg',
alt: 'Schrödinger Hat Logo'
},
social: [
{ icon: 'github', label: 'GitHub', href: 'https://github.com/schroedinger-hat' },
{ icon: 'youtube', label: 'YouTube', href: 'https://www.youtube.com/@schroedingerhat' },
{ icon: 'linkedin', label: 'LinkedIn', href: 'https://www.linkedin.com/company/schroedinger-hat' },
],
head: [
{
tag: 'link',
attrs: {
rel: 'icon',
href: '/favicon.svg',
type: 'image/svg+xml'
}
},
{
tag: 'link',
attrs: {
rel: 'icon',
href: '/favicon.ico',
type: 'image/x-icon'
}
},
{
tag: 'script',
attrs: {
src: '/netlify-identity-widget.js',
defer: true
}
}
],
sidebar: [
{
label: 'General',
autogenerate: {
directory: 'general',
collapsed: false
},
},
{
label: 'Association',
autogenerate: {
directory: 'association',
collapsed: false
},
},
{
label: 'Finance',
autogenerate: {
directory: 'finance',
collapsed: false
},
},
{
label: 'DevOps',
autogenerate: {
directory: 'devops',
collapsed: false
},
},
{
label: 'Tools',
autogenerate: {
directory: 'tools',
collapsed: false
},
},
],
components: {
// Add custom components here if needed
}
}),
],
});