-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocusaurus.config.js
120 lines (120 loc) · 3.29 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
module.exports = {
title: 'ActiveWorkflow Documentation',
tagline: 'Turn complex requirements to workflows without leaving the comfort of your technology stack',
url: 'https://docs.activeworkflow.org',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.ico',
organizationName: 'raspberry-lef', // Usually your GitHub org/user name.
projectName: 'raspberry-lef.github.io', // Usually your repo name.
themeConfig: {
image: 'img/AW_preview.png',
navbar: {
title: 'ActiveWorkflow Documentation',
logo: {
alt: 'ActiveWorkflow Logo',
src: 'img/AW-logo.svg',
},
items: [
// {
// to: '/',
// activeBasePath: 'docs',
// label: 'Documentation',
// position: 'left',
// },
// {to: 'blog', label: 'Documentation Blog', position: 'left'},
{
href: 'https://github.com/automaticmode/active_workflow',
// label: 'GitHub',
position: 'right',
className: 'header-github-link',
'aria-label': 'GitHub repository',
},
],
},
algolia: {
apiKey: '0b048d550c237f1098bcba9c82def19a',
indexName: 'activeworkflow',
},
prism: {
additionalLanguages: ['ruby'],
},
footer: {
style: 'dark',
logo: {
alt: 'Automatic Mode Labs Logo',
src: 'img/AML-logo.svg',
href: 'https://www.automaticmode.com',
},
links: [
// {
// title: 'Docs',
// items: [
// {
// label: 'Style Guide',
// to: 'docs/',
// },
// {
// label: 'Second Doc',
// to: 'docs/doc2/',
// },
// ],
// },
// {
// title: 'Community',
// items: [
// {
// label: 'Stack Overflow',
// href: 'https://stackoverflow.com/questions/tagged/activeworkflow',
// },
// {
// label: 'Discord',
// href: 'https://discordapp.com/invite/activeworkflow',
// },
// ],
// },
// {
// title: 'More',
// items: [
// {
// label: 'Blog',
// to: 'blog',
// },
// {
// label: 'GitHub',
// href: 'https://github.com/automaticmode/activeworkflow',
// },
// ],
// },
],
copyright: `Copyright © ${new Date().getFullYear()} Automatic Mode Labs AG`,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
routeBasePath: '/',
// Please change this to your repo.
// editUrl:
// 'https://github.com/facebook/docusaurus/edit/master/website/',
},
blog: {
showReadingTime: false,
// Please change this to your repo.
// editUrl:
// 'https://github.com/facebook/docusaurus/edit/master/website/blog/',
feedOptions: {
type: null
},
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};