-
Notifications
You must be signed in to change notification settings - Fork 13
/
docusaurus.config.js
103 lines (100 loc) · 2.81 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 lightCodeTheme = require('prism-react-renderer/themes/github');
const darkCodeTheme = require('prism-react-renderer/themes/dracula');
const algosdkPlugin = require('./src/docusaurus-plugin/algosdk/index');
const bufferPlugin = require('./src/docusaurus-plugin/buffer/index');
/** @type {import('@docusaurus/types').DocusaurusConfig} */
module.exports = {
title: 'MyAlgo Connect',
tagline: 'MyAlgoConnect Developer Documentation. This documentation explains how to connect Dapps to the Algorand blockchain through MyAlgo Connect.',
url: 'https://connect.myalgo.com',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.ico',
organizationName: 'Rand Labs', // Usually your GitHub org/user name.
projectName: 'MyAlgo Connect', // Usually your repo name.
themeConfig: {
metadata: [
{
property: 'og:image',
content: 'https://connect.myalgo.com/img/connect-icon.png',
},
{name: 'twitter:card', content: 'summary_large_image'},
{
name: 'twitter:image',
content: 'https://connect.myalgo.com/img/connect-icon.png',
},
{name: 'twitter:site', content: '@randlabs'},
],
colorMode: {
// "light" | "dark"
defaultMode: 'light',
// Hides the switch in the navbar
// Useful if you want to support a single color mode
disableSwitch: true,
},
navbar: {
title: '',
hideOnScroll: true,
logo: {
alt: 'MyAlgo Connect',
src: 'img/logo.svg',
},
items: [
{
type: 'doc',
docId: 'introduction',
position: 'right',
label: 'Documentation',
className: 'custom-item-in-nav',
},
{
to: 'community',
label: 'Community',
position: 'right',
className: 'custom-item-in-nav',
},
{
href: 'https://github.com/randlabs/myalgo-connect/releases',
position: 'right',
className: 'header-github-link',
'aria-label': 'GitHub repository',
},
],
},
docs: {
sidebar: {
hideable: false
}
},
image: 'img/connect-icon.svg',
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
// Please change this to your repo.
editUrl: 'https://github.com/randlabs/myalgo-connect-homepage/edit/master',
},
gtag: {
trackingID: 'G-KBVMSBV1Z1',
anonymizeIP: true,
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
plugins: [
algosdkPlugin,
bufferPlugin,
'docusaurus-plugin-sass'
]
};