forked from blefnk/relidocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.js
39 lines (38 loc) · 905 Bytes
/
astro.config.js
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
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
// https://astro.build/config
export default defineConfig({
site: "https://astro.reliverse.org",
integrations: [
starlight({
title: "Reliverse Community",
defaultLocale: "root",
locales: {
root: {
label: "English",
lang: "en",
},
pl: {
label: "Polish (Polski)",
},
uk: {
label: "Ukrainian (Українська)",
},
},
social: {
github: "https://github.com/blefnk/astro",
discord: "https://discord.gg/C4Z46fHKQ8",
},
sidebar: [
{
label: "Relivator",
autogenerate: { directory: "relivator" },
},
{
label: "Reliverse",
autogenerate: { directory: "reliverse" },
},
],
}),
],
});