forked from mobilejazz/harmony-reference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docusaurus.config.js
103 lines (102 loc) · 2.6 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
const path = require('path');
module.exports = {
title: 'Harmony Reference',
tagline: 'The tagline of Harmony Reference',
url: 'https://harmony.mobilejazz.com',
baseUrl: '/',
favicon: 'favicon/favicon.ico',
organizationName: 'mobilejazz', // Usually your GitHub org/user name.
projectName: 'harmony-reference', // Usually your repo name.
themeConfig: {
navbar: {
title: 'Harmony',
logo: {
alt: 'Harmony Reference Logo',
src: 'svg/as_harmony_logo_imagotype.svg',
},
items: [
{to: 'docs/introduction', label: 'Reference', position: 'left'},
{
href: 'https://github.com/mobilejazz/harmony-reference',
label: 'GitHub',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [
{
title: 'Docs',
items: [
{
label: 'Introduction',
to: 'docs/introduction',
},
{
label: 'Getting Started',
to: 'docs/getting-started/overview',
},
{
label: 'Fundamentals',
to: 'docs/fundamentals/concepts',
},
],
},
{
title: 'Company',
items: [
{
label: 'Mobile Jazz',
href: 'https://mobilejazz.com',
},
{
label: 'Dribbble',
href: 'https://mobilejazz.dribbble.com/',
},
{
label: 'LinkedIn',
href: 'https://www.linkedin.com/company/mobilejazz',
},
],
},
{
title: 'Social',
items: [
{
label: 'GitHub',
href: 'https://github.com/mobilejazz',
},
{
label: 'Twitter',
href: 'https://twitter.com/mobilejazzcom',
},
{
label: 'Instagram',
href: 'https://www.instagram.com/mobilejazz',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Mobile Jazz`,
},
prism: {
additionalLanguages: ['kotlin', 'php', 'swift', 'groovy'],
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
path: 'docs',
sidebarPath: require.resolve('./src/sidebars.js'),
editUrl: 'https://github.com/mobilejazz/harmony-reference/edit/master/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};