-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathastro.config.mjs
43 lines (42 loc) · 1.21 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
// @ts-check
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
title: "FerrumC Docs",
social: {
discord: "https://discord.gg/qT5J8EMjwk",
github: "https://github.com/ferrumc-rs/ferrumc",
},
sidebar: [
{
label: "Start Here",
items: [
{ label: "Getting Started", slug: "start/getting_started" },
{ label: "Migrate", slug: "start/migrate" },
],
},
{
label: "About",
items: [
{ label: "Introduction", slug: "about/introduction" },
{ label: "FAQ", slug: "about/faq" },
{ label: "Comparison", slug: "about/comparison" },
],
},
{
label: "Internal Documentation",
items: [
{ label: "Getting Started", slug: "internal/getting_started" },
{ label: "Database", slug: "internal/database" },
{ label: "Caching", slug: "internal/caching" },
],
},
],
favicon: "/favicon.ico",
customCss: ["src/style/theme.css"],
}),
],
});