-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
54 lines (53 loc) · 1.51 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
// @ts-check
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
// https://astro.build/config
export default defineConfig({
site: "https://www.rpgsessions.com",
base: "/discord-bot-docs",
trailingSlash: "never",
integrations: [
starlight({
title: "RPG Sessions Discord Bot",
favicon: "mark.png",
logo: { src: "./src/assets/mark.png" },
social: {
discord: "https://discord.gg/DfEkRzUbjk",
github: "https://github.com/Unbound-Legends/discord-bot-docs",
},
sidebar: [
{
label: "Guides",
// autogenerate: { directory: "guides" },
items: [
// Each item here is one entry in the navigation menu.
{ label: "Introduction", slug: "guides/how-to" },
{
label: "Connect your Account",
slug: "guides/connect-sessions-account",
},
{
label: "Connecting a Game Table",
slug: "guides/connecting-to-game-table",
},
{
label: "Synchronize Game Table Events",
slug: "guides/sync-game-table-events",
},
],
},
{
label: "Command Reference",
autogenerate: { directory: "reference" },
},
{
label: "Other Commands",
autogenerate: { directory: "misc" },
},
],
components: {
SiteTitle: './src/components/SiteTitle.astro',
}
}),
],
});