-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
33 lines (32 loc) · 979 Bytes
/
astro.config.mjs
File metadata and controls
33 lines (32 loc) · 979 Bytes
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
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
site: 'https://research-data-management.github.io/research-software-licensing/',
base: '/research-software-licensing',
integrations: [
starlight({
title: "Research software licensing guide",
customCss: [
'./src/styles/custom.css'
],
sidebar: [
{ label:"This guide", link: "/"},
{ slug: "check_prerequisites"},
{ slug: "complications"},
{ label: "Choose a license",
autogenerate: { directory: "choose_a_license" }
},
{ slug: "faq" }
],
social: {
github: 'https://github.com/research-data-management/research-software-licensing'
},
components: {
// Override the default `Footer` component.
Footer: './src/components/MyFooter.astro',
},
lastUpdated: true
}),
],
});