-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
52 lines (51 loc) · 1.4 KB
/
astro.config.mjs
File metadata and controls
52 lines (51 loc) · 1.4 KB
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
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
// https://astro.build/config
export default defineConfig({
site: "https://docs.loadorderlibrary.com",
integrations: [
starlight({
title: "API Docs",
logo: {
src: "./src/assets/logo.svg",
},
social: {
github: "https://github.com/withastro/starlight",
twitter: "https://bsky.app/profile/phinoc.io",
},
sidebar: [
{ label: "Introduction", link: "/" },
{
label: "Basics",
items: [
{ label: "General Usage", link: "/basics/general-usage/" },
{ label: "Authentication", link: "/basics/authentication/" },
{ label: "Error Codes", link: "/basics/error-codes/" },
],
},
{
label: "Lists",
items: [
{ label: "Overview", link: "/lists/overview/" },
{ label: "Creating a List", link: "/lists/create/" },
{ label: "Viewing Lists", link: "/lists/view/" },
{ label: "Updating List", link: "/lists/update/" },
{ label: "Deleting a List", link: "/lists/delete/" },
{ label: "Comparing Lists", link: "/lists/compare/" },
],
},
{
label: "Games",
items: [{ label: "Viewing Games", link: "/games/view" }],
},
{
label: "Users",
items: [
{ label: "Viewing User Info", link: "/users/view" },
{ label: "Managing API Tokens", link: "/users/tokens" },
],
},
],
}),
],
});