-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathastro.config.mjs
More file actions
72 lines (70 loc) · 2.43 KB
/
astro.config.mjs
File metadata and controls
72 lines (70 loc) · 2.43 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
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'Fishstrap',
favicon: '/favicon.png',
logo: {
src: './src/assets/favicon.webp',
replacesTitle: true,
},
defaultLocale: 'root',
head: [
{
tag: 'meta',
attrs: {
property: 'og:image',
content: '/Thumbnail.png',
},
},
],
social: [{ icon: 'github', label: 'GitHub', href: 'https://github.com/fishstrap/fishstrap' }],
customCss: [
'./src/css/custom.css',
],
sidebar: [
{
label: 'FAQ',
items: [
{ label: 'Frequently Asked Questions (FAQ)', slug: 'faq/faq'},
]
},
{
label: 'Manual',
items: [
{ label: 'Introduction to Fishstrap', slug: 'manual/introduction'},
{ label: 'FastFlags (Client)', slug: 'manual/fast-flags-client'},
{ label: 'Appearance', slug: 'manual/appearance'},
{ label: 'Integrations', slug: 'manual/integrations'},
{ label: 'Bootstrapper', slug: 'manual/bootstrapper'},
]
},
{
label: 'Troubleshooting',
items: [
{ label: 'Preface', slug: 'troubleshoot/preface' },
{ label: 'Troubleshooting Fishstrap', slug: 'troubleshoot/fishstrap' },
{ label: 'Troubleshooting Roblox', slug: 'troubleshoot/roblox' },
],
},
{
label: 'Legal',
items: [
{ label: 'License', slug: 'legal/license' },
// { label: 'Privacy Policy', slug: 'legal/privacy-policy' },
],
},
{
label: 'For Developers',
items: [
{ label: 'Contributor Guidelines', slug: 'developers/contributor-guidelines' },
{ label: 'Downloading and Building from source', slug: 'developers/downloading-and-building' },
],
},
],
}),
],
});