-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
astro.config.mts
56 lines (53 loc) · 1.65 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
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
import starlightLinksValidator from "starlight-links-validator";
import { rehypeHeadingIds } from "@astrojs/markdown-remark";
import rehypeAutolinkHeadings from "rehype-autolink-headings";
// https://astro.build/config
export default defineConfig({
site: "https://docs.vencord.dev",
integrations: [
starlight({
plugins: [starlightLinksValidator()],
title: "Vencord Docs",
logo: {
src: "./src/assets/favicon.png"
},
favicon: "favicon.png",
editLink: {
baseUrl: "https://github.com/Vencord/Docs/tree/main/"
},
social: {
github: "https://github.com/Vencord",
discord: "https://vencord.dev/discord"
},
customCss: ["./src/style/custom.css", "./src/style/headingLinks.css"],
lastUpdated: true,
sidebar: [
{
label: "Introduction",
link: "/intro"
},
{
label: "Installation & Preparation",
autogenerate: { directory: "installing" }
},
{
label: "Plugin Development",
autogenerate: { directory: "plugins" }
}
]
})
],
markdown: {
rehypePlugins: [
rehypeHeadingIds,
[
rehypeAutolinkHeadings,
{
behavior: "wrap"
}
]
]
}
});