-
Notifications
You must be signed in to change notification settings - Fork 6
/
astro.config.mjs
56 lines (55 loc) · 1.48 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
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
site: 'https://louisescher.github.io',
base: '/starlight-ion-theme',
integrations: [starlight({
title: 'Ion Theme',
logo: {
src: './src/assets/ion-logo.svg'
},
social: {
github: 'https://github.com/louisescher/starlight-ion-theme'
},
sidebar: [{
label: '[home] Home',
link: '/'
}, {
label: '[list] Features',
link: '/features/'
}, {
label: '[box] Guides',
autogenerate: {
directory: 'guides'
}
}, {
label: '[book] Reference',
autogenerate: {
directory: 'reference'
}
}],
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',
Head: './src/components/Head.astro',
PageTitle: './src/components/PageTitle.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"
});