This repository has been archived by the owner on Jul 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
docusaurus.config.js
146 lines (141 loc) · 4.54 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/**
* Copyright (c) 2017-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
// See https://docusaurus.io/docs/site-config for all the possible
// site configuration options.
// List of projects/orgs using your project for the users page.
const siteConfig = {
title: 'EOSIO Pro Testnet for LACChain IADB Labs Blockchain', // Title for your website.
tagline: 'LACCHAIN EOSIO Technical Documentation',
url: 'https://latamlink.io', // Your website URL
baseUrl: '/', // Base URL for your project */
// Used for publishing and more
projectName: 'latamlink.io',
organizationName: 'LatamLink',
favicon: 'img/favicon/favicon.ico',
//scripts: ['https://buttons.github.io/buttons.js','../../scripts/languageSelector.js'],
themeConfig: {
colorMode: {
// "light" | "dark"
defaultMode: 'light',
// // Hides the switch in the navbar
// // Useful if you want to support a single color mode
disableSwitch: true,
// // Should we use the prefers-color-scheme media-query,
// // using user system preferences, instead of the hardcoded defaultMode
// respectPrefersColorScheme: true,
},
navbar: {
title: '',
hideOnScroll: false,
logo: {
alt: 'Latamlink Logo',
src: 'img/latamlink_logo-h-full-color-overwhite.svg',
srcDark: 'img/latamlink_logo-h-full-color-overwhite.svg',
//href: 'https://es.latamlink.io',
},
items: [
// {href: 'https://latamlink.io/#about', label: 'About', position: 'right'},
// {href: 'https://medium.com/@latam_link', label: 'News', position: 'right'},
{href: 'https://lacchain.eosio.online/', label: 'Network Dashboard', position: 'right'},
{href: 'http://explorer.latamlink.io/', label: 'Block Explorer', position: 'right'},
{to: 'docs/eosio', label: 'Documentation', position: 'right'},
{href: 'https://es.latamlink.io/', label: 'Español',position: 'right',},
{to: 'search'},
]
},
footer: {
links: [
{
title: 'Developer Tools',
items: [
{
label: 'Network Monitor',
to: 'https://lacchain.eosio.online/',
},
{
label: 'Block Explorer',
to: 'http://explorer.latamlink.io/',
},
{
label: 'API Endpoints',
to: 'https://latamlink.io/docs/api.html',
},
],
},
{
title: 'Community',
items: [
{
label: 'Stack Overflow',
href: 'https://eosio.stackexchange.com/',
},
{
label: 'GitHub',
href: 'https://github.com/lacchain',
},
],
},
{
title: 'More',
items: [
{
label: 'Medium',
href: 'https://medium.com/@latam_link',
},
{
label: 'Twitter',
href: 'https://twitter.com/LatamLink_EOS',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} LatamLink`, // You can also put own HTML here.
},
//Algolia integration
algolia: {
apiKey: 'f7e83f64ca037b5315b5ccd56f79910c',
indexName: 'latamlink',
placeholder: 'Search',
algoliaOptions: {} // Optional, if provided by Algolia
},
googleAnalytics: {
trackingID: "UA-173987-71",
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
// Docs folder path relative to website dir.
path: './docs',
// Sidebars file relative to website dir.
editUrl:'https://github.com/LatamLink/latamlink.io/tree/master',
sidebarPath: require.resolve('./sidebars.js'),
showLastUpdateAuthor: false,
showLastUpdateTime: true,
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
scripts: [
{
src:
'https://buttons.github.io/buttons.js',
async: true,
},
'https://code.jquery.com/jquery-3.4.1.min.js',
'https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js',
'https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js',
'https://kit.fontawesome.com/6c84ac616f.js',
'https://cdnjs.cloudflare.com/ajax/libs/tiny-slider/2.9.2/min/tiny-slider.js',
],
};
module.exports = siteConfig;