-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.mjs
55 lines (54 loc) · 1.42 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";
// https://astro.build/config
export default defineConfig({
site: "https:///IvoRum",
base: "/volts-documentation",
integrations: [
starlight({
title: "100 Volts documentation",
logo: {
src: "./src/assets/ion-logo.svg",
},
social: {
github: "https://github.com/100volts",
},
sidebar: [
{
label: "[home] Home",
link: "/",
},
{
label: "[list] Features",
link: "/features/",
},
{
label: "[plug] Endpoints",
autogenerate: {
directory: "endpoints",
},
},
],
components: {
ThemeProvider: "./src/components/ThemeProvider.astro",
ThemeSelect: "./src/components/ThemeSelect.astro",
SiteTitle: "./src/components/SiteTitle.astro",
Sidebar: "./src/components/Sidebar.astro",
Pagination: "./src/components/Pagination.astro",
Hero: "./src/components/Hero.astro",
},
customCss: [
"@fontsource-variable/space-grotesk/index.css",
"@fontsource/space-mono/400.css",
"@fontsource/space-mono/700.css",
"./src/styles/theme.css",
],
expressiveCode: {
themes: ["github-dark"],
},
pagination: false,
lastUpdated: true,
}),
],
output: "static",
});