-
Notifications
You must be signed in to change notification settings - Fork 45
/
docusaurus.config.js
69 lines (68 loc) · 1.66 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
/*
* Copyright IBM Corp. All Rights Reserved.
*
* SPDX-License-Identifier: Apache-2.0
*/
module.exports = {
title: 'Weaver: DLT Interoperability Framework',
tagline: 'Documentation',
url: 'https://hyperledger-labs.github.io',
baseUrl: '/weaver-dlt-interoperability/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'shared/favicon.ico',
organizationName: 'hyperledger-labs',
projectName: 'hyperledger-labs.github.io',
themeConfig: {
prism: {
additionalLanguages: ['java', 'kotlin', 'groovy', 'toml'],
},
navbar: {
title: 'Weaver',
logo: {
alt: 'Weaver',
src: 'shared/logo.svg',
},
items: [
{
to: 'docs/external/introduction',
activeBasePath: 'docs',
label: 'Docs',
position: 'left',
},
{
to: 'blog',
label: 'Blog',
position: 'left'
},
{
href: 'https://github.com/hyperledger-labs/weaver-dlt-interoperability',
label: 'GitHub',
position: 'right',
},
],
},
footer: {
style: 'light',
links: [
],
copyright: `Copyright © ${new Date().getFullYear()} Weaver Framework.`,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
// Please change this to your repo.
editUrl:
'https://github.com/hyperledger-labs/weaver-dlt-interoperability/edit/main/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};