-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
101 lines (99 loc) · 2.41 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
// @ts-check
import { defineConfig, sharpImageService } from "astro/config";
import starlight from "@astrojs/starlight";
import sitemap from "@astrojs/sitemap";
import tailwind from "@astrojs/tailwind";
// https://astro.build/config
export default defineConfig({
site: "https://alumnium.ai",
image: {
service: sharpImageService({ limitInputPixels: false }),
},
trailingSlash: "never",
integrations: [
starlight({
logo: {
src: "./public/favicon.svg",
alt: "Alumnium",
},
title: "Alumnium",
social: {
github: "https://github.com/alumnium-hq/alumnium",
slack: "https://seleniumhq.slack.com/channels/alumnium",
},
favicon: "./public/favicon.svg",
head: [
{
tag: "link",
attrs: {
rel: "icon",
href: "/favicon.ico",
sizes: "32x32",
},
},
{
tag: "link",
attrs: {
rel: "icon",
href: "/favicon.svg",
type: "image/svg+xml",
},
},
{
tag: "link",
attrs: {
rel: "apple-touch-icon",
href: "/apple-touch-icon.png",
},
},
],
sidebar: [
{
label: "Getting Started",
items: [
{
label: "Overview",
slug: "docs",
},
{
label: "Installation",
slug: "docs/getting-started/installation",
},
{
label: "Configuration",
slug: "docs/getting-started/configuration",
},
{
label: "Writing First Test",
slug: "docs/getting-started/writing-first-test",
},
],
},
{
label: "Guides",
items: [
{
label: "Doing Actions",
slug: "docs/guides/actions",
},
{
label: "Checking Verifications",
slug: "docs/guides/verifications",
},
{
label: "Self-hosting LLMs",
slug: "docs/guides/self-hosting",
},
],
},
{
label: "Reference",
slug: "docs/reference",
},
],
customCss: ["./src/tailwind.css"],
}),
tailwind({ applyBaseStyles: false }),
sitemap({}),
],
});