This repository has been archived by the owner on Jan 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docusaurus.config.js
63 lines (63 loc) · 1.64 KB
/
docusaurus.config.js
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
module.exports = {
title: 'Tony Programming Language',
tagline: 'Tony is a strongly typed, high level, general purpose programming language built for parallelism.',
url: 'https://tony-lang.github.io',
baseUrl: '/',
favicon: 'img/favicon.ico',
organizationName: 'tony-lang', // Usually your GitHub org/user name.
projectName: 'tony-lang.github.io', // Usually your repo name.
themeConfig: {
navbar: {
title: 'Tony',
hideOnScroll: true,
items: [
{
to: 'docs/docs-introduction',
activeBasePath: 'docs/docs-',
label: 'Docs',
position: 'left',
},
{
to: 'docs/reference/syntax',
activeBasePath: 'docs/reference',
label: 'Reference',
position: 'left',
},
{
to: 'docs/cli/install',
activeBasePath: 'docs/cli',
label: 'CLI',
position: 'left',
},
{
href: 'https://github.com/tony-lang/tony',
label: 'GitHub',
position: 'right',
},
],
},
footer: {
style: 'dark',
copyright: `Tony formally apologizes to Tony Hoare for abusing his name.`,
},
algolia: {
apiKey: 'a5c5c774d0e460a8f8ca0e032959f64c',
indexName: 'tony-lang',
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl:
'https://github.com/tony-lang/tony-lang.github.io/edit/master/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};