forked from beakerbrowser/docs.beakerbrowser.com
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocusaurus.config.js
65 lines (65 loc) · 1.5 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
module.exports = {
title: 'dBrowser Docs',
url: 'https://docs.dbrowser.com',
baseUrl: '/',
favicon: 'img/favicon.png',
themeConfig: {
navbar: {
title: 'dBrowser Docs',
logo: {
alt: 'dBrowser Logo',
src: 'img/logo.svg',
srcDark: 'img/logo-white.svg'
},
items: [
{
href: 'https://peepsx.com/dbrowser',
label: 'Install DBrowser',
position: 'left',
target: '_self',
},
{
href: 'https://peepsx.com/dwallet',
label: 'dWallet',
position: 'left',
target: '_self',
},
{
href: 'https://dwebx.org',
label: 'About dWeb',
position: 'left',
target: '_self',
},
{
href: 'https://t.me/peepsology',
label: 'Support',
position: 'left',
},
],
},
algolia: {
apiKey: '8e801593bf85623c9a64dfd9470d06ab',
indexName: 'dbrowser'
},
googleAnalytics: {
trackingID: 'G-FZX9NVXJF9',
// Optional fields.
// anonymizeIP: true, // Should IPs be anonymized?
}
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl: 'https://github.com/dbrowser/docs.dbrowser.com/edit/master/',
routeBasePath: '/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};