-
Notifications
You must be signed in to change notification settings - Fork 1
/
astro.config.mjs
87 lines (83 loc) · 2.13 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
85
86
87
// @ts-check
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
import starlightBlog from "starlight-blog";
import starlightLinksValidator from "starlight-links-validator";
// https://astro.build/config
export default defineConfig({
site: "https://moonlight-mod.github.io",
integrations: [
starlight({
plugins: [
starlightBlog({
authors: {
cynosphere: {
name: "Cynosphere",
url: "https://c7.pm/",
picture: "https://github.com/Cynosphere.png"
},
notnite: {
name: "NotNite",
url: "https://notnite.com/",
picture: "https://github.com/NotNite.png"
},
adryd: {
name: "adryd",
url: "https://adryd.com/",
picture: "https://github.com/adryd325.png"
}
}
}),
starlightLinksValidator()
],
title: "moonlight",
logo: {
dark: "./src/img/wordmark-light.png",
light: "./src/img/wordmark.png",
alt: "moonlight",
replacesTitle: true
},
favicon: "/favicon.png",
social: {
github: "https://github.com/moonlight-mod/moonlight"
},
editLink: {
baseUrl:
"https://github.com/moonlight-mod/moonlight-mod.github.io/edit/main/"
},
sidebar: [
{
label: "Using moonlight",
autogenerate: { directory: "using" }
},
{
label: "Extension developers",
autogenerate: { directory: "ext-dev" }
},
{
label: "moonlight developers",
autogenerate: { directory: "dev" }
}
],
components: {
Hero: "./src/components/Hero.astro"
},
head: [
{
tag: "meta",
attrs: {
property: "og:image",
content: "https://moonlight-mod.github.io/favicon.png"
}
},
{
tag: "meta",
attrs: {
name: "twitter:card",
content: "summary"
}
}
]
})
]
});