-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
84 lines (83 loc) · 2.11 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
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
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: 'CounterStrikeSharp',
logo: { src: './src/assets/logo.svg' },
favicon: './src/assets/logo.svg',
expressiveCode: {
themes: [ 'dark-plus', 'light-plus'],
},
customCss: [
'@fontsource/ibm-plex-sans/400.css',
'@fontsource/ibm-plex-sans/500.css',
'@fontsource/ibm-plex-sans/700.css',
'@fontsource/jetbrains-mono/400.css',
'@fontsource/jetbrains-mono/600.css',
'./src/styles/custom.css',
],
head: [
{
tag: 'script',
attrs: {
src: 'https://gc.zgo.at/count.js',
'data-goatcounter': 'https://cssharp.goatcounter.com/count',
async: true,
},
},
],
social: {
github: 'https://github.com/roflmuffin/CounterStrikeSharp',
discord: 'https://discord.gg/eAZU3guKWU'
},
sidebar: [
{
label: 'Guides',
autogenerate: { directory: 'guides' },
},
{
label: 'Help',
items: [
{
label: 'Troubleshooting',
link: 'troubleshooting',
},
{
label: 'Resources',
link: 'resources',
}
]
},
{
label: 'Features',
autogenerate: { directory: 'features' },
},
{
label: 'Admin Framework',
autogenerate: { directory: 'admin-framework' },
},
{
label: 'Reference',
autogenerate: { directory: 'reference' },
},
{
label: 'Examples',
autogenerate: { directory: 'examples' },
}
],
editLink: {
baseUrl:
'https://github.com/roflmuffin/CounterStrikeSharp/edit/main/docs/',
},
}),
],
base: '/docs/',
site: 'https://counterstrikesharp.github.io/docs/',
markdown: {
shikiConfig: {
wrap: false,
},
},
});