-
Notifications
You must be signed in to change notification settings - Fork 6
/
docusaurus.config.js
287 lines (279 loc) · 7.83 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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
const lightCodeTheme = require("prism-react-renderer/themes/dracula");
const darkCodeTheme = require("prism-react-renderer/themes/dracula");
/** @type {import('@docusaurus/types').Config} */
const config = {
title: "Build your web3 project on Ternoa",
tagline: "Accelerate your web3 development with our easy-to-use Ternoa.js SDK, guides, and tutorials",
url: "https://docs.ternoa.network/",
baseUrl: "/",
onBrokenLinks: "warn",
onBrokenMarkdownLinks: "warn",
onDuplicateRoutes: "warn",
favicon: "img/favicon.ico",
noIndex: true,
staticDirectories: ["public", "static"],
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: "Ternoa", // Usually your GitHub org/user name.
projectName: "Ternoa-doc", // Usually your repo name.
markdown: {
mermaid: true,
},
themes: ["@docusaurus/theme-mermaid"],
// Even if you don't use internalization, you can use this field to set useful
// metadata like html lang. For example, if your site is Chinese, you may want
// to replace "en" with "zh-Hans".
i18n: {
defaultLocale: "en",
locales: ["en", "fr"],
path: "i18n",
localeConfigs: {
en: {
label: "English",
direction: "ltr",
htmlLang: "en-GB",
calendar: "gregory",
path: "en",
},
/*fr: {
label: 'Français',
direction: 'ltr',
htmlLang: 'fr-FR',
calendar: 'gregory',
path: 'fr',
},*/
},
},
plugins: [
[
"@docusaurus/plugin-client-redirects",
{
redirects: [
// {
// to: "/discover-ternoa",
// from: [
// "/welcome",
// "/general",
// "/general/join-the-community",
// "/general/contibutors",
// "/general/ambassador-program",
// "/general/accelerator-program",
// "/general/code-of-conduct",
// ],
// },
{
to: "/wiki/how-to-stake-on-ternoa",
from: "/general/how-to-stake-on-ternoa",
},
{
to: "/category/features",
from: [
"/category/nft-primitives",
"/wiki/nft-features/collections",
"/wiki/nft-features/marketplace",
"/wiki/nft-features/auctions",
"/wiki/nft-features/rental",
],
},
{
to: "/for-developers/overview",
from: "/wiki/explorer",
},
],
},
],
],
presets: [
[
"classic",
/** @type {import('@docusaurus/preset-classic').Options} */
({
sitemap: {
changefreq: 'weekly',
priority: 0.5,
ignorePatterns: ['/tags/**'],
filename: 'sitemap.xml',
},
docs: {
sidebarPath: require.resolve("./sidebars.js"),
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
"https://github.com/capsule-corp-ternoa/ternoa-doc/blob/develop/",
routeBasePath: "/",
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
gtag: {
trackingID: "G-WVJQ0JRBZK",
anonymizeIP: true,
},
}),
],
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
algolia: {
appId: "JDLVU0U8IU",
apiKey: "970f1b0558f5a511df9cc0ad33a97c09",
indexName: "ternoa_doc",
contextualSearch: true,
},
/*announcementBar: {
id: 'annoucementBar-0',
content:
'FR version WIP <a target="_blank" rel="noopener noreferrer" href="#">english version</a>.',
backgroundColor: '#fafbfc',
textColor: '#091E42',
isCloseable: true,
},*/
navbar: {
hideOnScroll: false,
title: "ternoa",
logo: {
alt: "Ternoa Logo",
src: "/img/ternoa_logo.svg",
width: 40,
},
items: [
// {
// type: 'dropdown',
// label: 'Docs',
// position: 'left',
// items: [
// {
// type: 'doc',
// label: 'Discover Ternoa',
// docId: 'discover-ternoa/index',
// },
// {
// type: 'doc',
// label: 'What is Ternoa',
// docId: 'discover-ternoa/what-is-ternoa',
// },
// {
// type: 'doc',
// label: 'Explore Features',
// docId: 'discover-ternoa/explore-ternoa-features',
// },
// ],
// },
{
type: 'dropdown',
label: 'SDK',
position: 'left',
items: [
{
type: 'doc',
label: 'Overview',
docId: 'for-developers/overview',
},
{
type: 'doc',
label: 'Developer Guides',
docId: 'for-developers/guides/index',
},
{
type: 'doc',
label: 'Advanced Guides',
docId: 'for-developers/advanced-guides/index',
},
],
},
{
href: "https://github.com/capsule-corp-ternoa",
className: "pseudo-icon github-icon",
position: "right",
},
{
href: "https://discord.com/invite/mQeEWQj46a",
className: "pseudo-icon discord-icon discord-card",
position: "right",
},
{
type: "search",
position: "right",
},
],
},
docs: {
sidebar: {
autoCollapseCategories: true,
},
},
footer: {
style: "light",
logo: {
href: "https://www.ternoa.network/",
src: "/img/ternoa_logo.svg",
alt: "Ternoa Doc",
height: "38px",
},
links: [
{
title: "Documentation",
items: [
// {
// label: "Welcome",
// to: "discover-ternoa/what-is-ternoa",
// },
{
label: "Ternoa Wiki",
to: "/category/wiki",
},
{
label: "For Developers",
to: "/for-developers",
},
{
label: "For Node Operators",
to: "/category/for-node-operators",
},
],
},
{
title: "Community",
items: [
{
label: "Discord",
href: "https://discord.com/invite/mQeEWQj46a",
},
{
label: "Twitter",
href: "https://twitter.com/ternoa_",
},
{
label: "GitHub",
href: "https://github.com/capsule-corp-ternoa/ternoa-js",
},
],
},
{
title: "About Ternoa",
items: [
{
label: "Ternoa",
href: "https://www.ternoa.network/",
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Ternoa Documentation, Inc. Built with Docusaurus.`,
},
colorMode: {
defaultMode: "dark",
disableSwitch: false,
respectPrefersColorScheme: false,
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
additionalLanguages: ["rust"],
},
}),
};
module.exports = config;