forked from LatamLink/es.latamlink.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
161 lines (154 loc) · 4.38 KB
/
Copy pathdocusaurus.config.js
File metadata and controls
161 lines (154 loc) · 4.38 KB
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/**
* 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.
const siteConfig = {
title: "Red Blockchain EOSIO para LAC Chain BID Labs", // Title for your website.
tagline: "Documentación Técnica",
url: "https://es.latamlink.io", // Your website URL
baseUrl: "/", // Base URL for your project */
// Used for publishing and more
projectName: "es.latamlink.io",
organizationName: "LatamLink",
favicon: "img/favicon.ico",
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
// Docs folder path relative to website dir.
path: './docs',
editUrl: 'https://github.com/LatamLink/es.latamlink.io/tree/master',
// Equivalent to `docsUrl`.
routeBasePath: 'docs/',
// Sidebars file relative to website dir.
sidebarPath: require.resolve('./sidebars.js'),
showLastUpdateAuthor: false,
showLastUpdateTime: true
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
themeConfig: {
colorMode: {
defaultMode: 'light',
disableSwitch: true
},
navbar: {
title: ' ',
hideOnScroll: true,
logo: {
alt: 'LatamLink Logo',
src: 'https://raw.githubusercontent.com/LatamLink/es.latamlink.io/master/static/images/latamlink_logo-h-full-color-overwhite.svg',
srcDark: 'https://raw.githubusercontent.com/LatamLink/es.latamlink.io/master/static/img/footerlogo.png'
},
items: [
// {
// href: 'https://medium.com/@latam_link',
// label: ' Noticias',
// position: 'right',
// },
{
href: 'https://dashboard.latamlink.io/',
label: 'Monitor de Red',
position: 'right',
},
{
href: 'http://explorer.latamlink.io/',
label: 'Explorador de Bloques',
position: 'right',
},
{
to: 'docs/testnet/eosio',
label: 'Documentación',
position: 'right',
},
{
href: 'https://latamlink.io/',
label: 'English',
position: 'right',
},
{to: 'search'},
]
},
footer: {
links: [
{
title: 'Herramientas',
items: [
{
label: 'Monitor de Red',
to: 'http://dashboard.latamlink.io/',
},
{
label: 'Explorador de Bloques',
to: 'http://explorer.latamlink.io/',
},
{
label: 'APIs',
to: 'https://es.latamlink.io/docs/api.html',
},
],
},
{
title: 'Comunidad',
items: [
{
label: 'Stack Overflow',
href: 'https://eosio.stackexchange.com/',
},
{
label: 'GitHub',
href: 'https://github.com/LatamLink',
},
],
},
{
title: 'Más',
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: '63254e86059566be7b401497c9484166',
indexName: 'latamlink_es',
placeholder: 'Buscar',
algoliaOptions: {} // Optional, if provided by Algolia
},
//Google Analytics
googleAnalytics: {
trackingID: "UA-173987-71",
},
},
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/popper.js@1.16.0/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;