-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathastro.config.ts
55 lines (54 loc) · 1.12 KB
/
astro.config.ts
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, passthroughImageService } from "astro/config";
import starlight from "@astrojs/starlight";
import deno from "@deno/astro-adapter";
// https://astro.build/config
export default defineConfig({
output: "server",
adapter: deno(),
image: {
service: passthroughImageService(),
},
integrations: [
starlight({
title: "Discord Luau",
logo: {
src: "/src/assets/logo.png",
replacesTitle: true,
},
favicon: "/icon.png",
social: {
github: "https://github.com/DiscordLuau/discord-luau",
discord: "https://discord.gg/DpQwdD8zD3",
},
sidebar: [
{
label: "Getting Started",
autogenerate: {
directory: "getting-started",
},
},
{
label: "Guides",
autogenerate: {
directory: "guides",
},
},
{
label: "Classes",
autogenerate: {
directory: "classes",
},
},
],
customCss: [
"./src/styles/landing.css",
"./src/styles/starlight.css",
"./src/styles/lua.css",
],
components: {
Pagination: "./src/components/Pagination.astro",
Header: "./src/components/Header.astro",
},
}),
],
});