-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
86 lines (82 loc) · 2.13 KB
/
Copy pathdocusaurus.config.js
File metadata and controls
86 lines (82 loc) · 2.13 KB
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
// @ts-check
const {themes} = require('prism-react-renderer');
const lightCodeTheme = themes.github;
const darkCodeTheme = themes.dracula;
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'AFRL-ARES',
tagline: 'ARES OS Ecosystem',
url: 'https://afrl-ares.github.io',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.ico',
organizationName: 'AFRL-ARES',
projectName: 'afrl-ares.github.io',
presets: [
[
'classic',
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
sidebarPath: require.resolve('./sidebars.js'),
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
}),
],
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
navbar: {
logo: {
alt: 'AFRL-ARES',
src: '/img/BlackARESLogo.png',
srcDark: '/img/ARESLogo.png'
},
items: [
{
type: 'doc',
docId: 'ares/intro',
position: 'left',
label: 'ARES OS 2.0',
},
{
type: 'doc',
docId: 'pyares/intro',
label: 'PyAres',
position: 'left',
},
{
type: 'doc',
docId: 'launcher/intro',
label: 'ARES Launcher',
position: 'left',
},
{
type: 'doc',
docId: 'datamodel/intro',
label: 'Datamodel',
position: 'left',
},
{
type: 'doc',
docId: 'athena/intro',
label: 'Educational ARES',
position: 'left',
},
],
},
footer: {
style: 'dark',
copyright: `Developed by the Air Force Research Laboratory (AFRL). Licensed under the MIT License. Distribution A. Approved for public release: distribution unlimited. AFRL-2025-5329`,
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
},
}),
};
module.exports = config;