-
Notifications
You must be signed in to change notification settings - Fork 2
/
astro.config.mjs
86 lines (82 loc) · 2 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
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
// https://astro.build/config
export default defineConfig({
site: 'https://classpaddev.github.io/wiki',
base: '/wiki',
integrations: [
starlight({
title: 'Classpad Dev',
description: 'Dive into the Classpad II fx-CP400! Unlock the full potential of the Classpad with our SDK and create your own app',
logo: {
src: './src/assets/favicon.svg',
},
editLink: {
baseUrl: 'https://github.com/classpaddev/wiki/edit/main/',
},
social: {
github: 'https://github.com/classpaddev/wiki',
discord: 'https://discord.gg/knpcNJTzpd',
},
sidebar: [
{
label: 'Get Started',
items: [
{ label: 'Introduction', link: '/getting-started/introduction/' },
{ label: 'Building', link: '/getting-started/building/' },
],
},
// {
// label: 'Guides',
// collapsed: true,
// autogenerate: { directory: 'guides' },
// items: [
// // Each item here is one entry in the navigation menu.
// { label: 'Example Guide', link: '/guides/example/' },
// ],
// },
{
label: 'Reference',
collapsed: true,
items: [
{
label: '📱 GUI',
collapsed: true,
autogenerate: { directory: 'reference/gui' },
},
{
label: '📟 OS',
collapsed: true,
autogenerate: { directory: 'reference/os' },
},
{
label: '🧮 CPU',
collapsed: true,
autogenerate: { directory: 'reference/cpu' },
}
]
},
{
label: 'Tutorials',
autogenerate: { directory: 'tutorials' },
},
{
label: 'Examples',
collapsed: true,
autogenerate: { directory: 'examples' },
},
{
label: 'Developer Notes',
collapsed: true,
badge: { text: 'New', variant: 'tip' },
autogenerate: { directory: 'dev' },
}
],
lastUpdated: true,
favicon: './src/assets/favicon.svg',
customCss: [
'./src/custom.css'
]
}),
],
});