-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathastro.config.mjs
62 lines (59 loc) · 1.37 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
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import starlightUtils from "@lorenzo_lewis/starlight-utils";
import starlightLinksValidator from 'starlight-links-validator'
// !! UPDATE LATEST VERSION HERE !!
// format semver with underscores to make it look like a semver would in a URL
var latest_display_name = 'Version 2.0 Beta';
var latest_dir_name = '2_0_beta';
// https://astro.build/config
export default defineConfig({
site: 'https://icu4x.unicode.org',
base: '',
integrations: [
starlight({
title: 'ICU4X',
social: {
github: 'https://github.com/unicode-org/icu4x',
},
plugins: [
starlightUtils({
navLinks: {
leading: { useSidebarLabelled: "leadingNavLinks" },
},
}),
starlightLinksValidator()
],
sidebar: [
{
label: "leadingNavLinks",
items: [
{ label: "Overview", link: "/overview" },
{ label: "Quickstart", link: "/" + latest_dir_name + "/quickstart" }
]
},
{
label: 'Start Here',
items: [
'overview'
],
},
{
label: latest_display_name,
autogenerate: { directory: latest_dir_name},
},
{
label: 'Previous Versions',
collapsed: false,
items: [
{
label: 'Version 1.5',
autogenerate: { directory: '1_5'},
collapsed: true,
}
],
},
],
}),
],
});