-
Notifications
You must be signed in to change notification settings - Fork 10
/
astro.config.mts
93 lines (90 loc) · 2.15 KB
/
astro.config.mts
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
import starlight from '@astrojs/starlight'
import { defineConfig } from 'astro/config'
import react from '@astrojs/react'
import tailwind from '@astrojs/tailwind'
// https://astro.build/config
export default defineConfig({
srcDir: './astro',
site: 'https://www.ada-url.com',
vite: {
build: {
rollupOptions: {
// For some reason, the build crashes without this
external: ['sharp'],
},
},
},
integrations: [
starlight({
// https://starlight.astro.build/reference/configuration
title: 'Ada URL',
social: {
github: 'https://github.com/ada-url/ada',
},
sidebar: [
{
label: 'Getting Started',
items: ['introduction', 'installation'],
},
{
label: 'CLI',
items: [
{
label: 'Introduction',
slug: 'cli',
},
{
label: 'Performance',
slug: 'cli/performance',
},
],
},
{
label: 'Supported Languages',
items: [
{
label: 'C++ client',
slug: 'clients/cpp',
},
{
label: 'Rust client',
slug: 'clients/rust',
},
{
label: 'Python client',
slug: 'clients/python',
},
{
label: 'Go client',
slug: 'clients/go',
},
{
label: 'LuaJIT client',
slug: 'clients/luajit',
},
],
},
],
components: {
SiteTitle: './astro/components/SiteTitle.astro',
},
favicon: './favicon-32x32.png',
logo: {
light: './astro/assets/logo-light.svg',
dark: './astro/assets/logo-dark.svg',
replacesTitle: true,
},
customCss: [
// Relative path to your custom CSS file
'./astro/custom.css',
],
editLink: {
baseUrl: 'https://github.com/ada-url/website/edit/main',
},
titleDelimiter: '-',
credits: false,
}),
react(),
tailwind(),
],
})