-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
55 lines (54 loc) · 1.61 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
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
import starlightImageZoom from "starlight-image-zoom";
// https://astro.build/config
export default defineConfig({
integrations: [
starlight({
plugins: [starlightImageZoom()],
title: "Sentinel Tickets",
favicon: "/favicon.ico",
components: {
SocialIcons: "./src/components/SocialIcons.astro",
},
social: [
{
icon: "github",
label: "GitHub",
href: "https://github.com./ralphkb/sentinel-tickets",
},
{
icon: "discord",
label: "Discord",
href: "https://discord.gg/vhXCzj9S3J",
},
{ icon: "email", label: "Email", href: "mailto:[email protected]" },
],
sidebar: [
{
label: "Setup",
items: [
// Each item here is one entry in the navigation menu.
{ label: "Creating a discord bot", link: "/setup/createabot/" },
{ label: "Installation", link: "/setup/installation/" },
{ label: "Updating", link: "/setup/updating/" },
],
},
{
label: "Configuration",
items: [
{ label: "Configuration File", link: "/configuration/config/" },
{ label: "Permissions", link: "/configuration/permissions/" },
],
},
{
label: "FAQ",
items: [
{ label: "Common Questions", link: "/faq/common-questions/" },
{ label: "Common Errors", link: "/faq/common-errors/" },
],
},
],
}),
],
});