-
Notifications
You must be signed in to change notification settings - Fork 11
/
docusaurus.config.js
253 lines (239 loc) · 7.24 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
// @ts-check
// `@type` JSDoc annotations allow editor autocompletion and type checking
// (when paired with `@ts-check`).
// There are various equivalent ways to declare your Docusaurus config.
// See: https://docusaurus.io/docs/api/docusaurus-config
import 'dotenv/config';
import {themes as prismThemes} from 'prism-react-renderer';
import {createNavItems} from './src/_utils/utils.js';
const mainNavItems = createNavItems('./docs');
/** @type {import('@docusaurus/types').Config} */
const config = {
noIndex: false, // set to false to enable search engine indexing
trailingSlash: true,
title: 'Rootstock Developers Portal',
tagline: 'Welcome to Rootstock',
favicon: 'img/favicon.png',
// Set the production url of your site here
url: 'https://dev.rootstock.io/',
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: '/',
customFields: {
keys : {
mendable : process.env.MENDABLE_KEY
},
homePage: {
editUrl: 'https://github.com/rsksmart/devportal/tree/main/',
},
moreLinks : {
changelog : {
title: 'Changelog',
url : '/changelog',
},
joinCommunity : {
title: 'Join the Community',
url : 'http://discord.gg/rootstock',
},
reportIssue : {
title: 'Report an Issue',
url : 'https://github.com/rsksmart/devportal/issues',
},
}
},
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: 'rsksmart', // Usually your GitHub org/user name.
projectName: 'devportal', // Usually your repo name.
onBrokenLinks: 'warn',
onBrokenMarkdownLinks: 'warn',
// Even if you don't use internationalization, 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'],
},
plugins: [
'docusaurus-plugin-sass',
[
'@docusaurus/plugin-content-blog',
{
blogTitle: 'Changelog',
blogDescription:
'Stay informed about the latest product updates on Rootstock.',
blogSidebarCount: 'ALL',
blogSidebarTitle: 'Changelog',
showReadingTime: false,
/**
* Required for any multi-instance plugin
*/
id: 'changelog',
/**
* URL route for the blog section of your site.
* *DO NOT* include a trailing slash.
*/
routeBasePath: 'changelog',
/**
* Path to data on filesystem relative to site dir.
*/
path: './changelog',
},
],
],
presets: [
[
'classic',
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
sidebarPath: './sidebars.js',
routeBasePath: '/', // Serve the docs at the site's root
showLastUpdateAuthor: true,
showLastUpdateTime: true,
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl: 'https://github.com/rsksmart/devportal/tree/main/'
},
blog: {
blogSidebarTitle: 'All posts',
blogSidebarCount: 'ALL',
blogTitle: 'Changelog',
blogDescription:
'stay informed about the latest product updates on Rootstock.',
},
theme: {
customCss: ['./src/scss/app.scss'],
// customCss: ['./src/css/custom.css']
},
sitemap: {
lastmod: 'date',
changefreq: 'weekly',
priority: 0.5,
ignorePatterns: ['/tags/**'],
filename: 'sitemap.xml',
createSitemapItems: async (params) => {
const {defaultCreateSitemapItems, ...rest} = params;
const items = await defaultCreateSitemapItems(rest);
return items.filter((item) => !item.url.includes('/page/'));
},
},
googleTagManager: {
containerId: process.env.GTM_CONTAINER_ID || 'GTM-12345',
},
}),
],
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
docs: {
sidebar: {
hideable: true,
},
},
colorMode: {
defaultMode: 'dark',
disableSwitch: false,
respectPrefersColorScheme: false,
},
// Replace with your project's social card
image: 'img/og.png',
navbar: {
title: 'Docs',
logo: {
alt: 'Rootstock Devportal',
src: 'img/logo.svg',
},
items: [
{
to: '/',
position: 'left',
activeBaseRegex: '^/$',
label: 'Home',
},
...mainNavItems,
{
href: 'https://github.com/rsksmart/devportal',
label: 'GitHub',
position: 'right',
icon: 'github',
},
{
href: 'http://discord.gg/rootstock',
label: 'Discord',
position: 'right',
icon: 'discord',
},
],
},
footer: {
// style: 'dark',
links: [
{
title: 'WHITEPAPER',
items: [
{
label: 'Original Whitepaper',
href: 'https://rootstock.io/rsk_white_paper-original.pdf',
},
{
label: 'Updated Whitepaper',
href: 'https://rootstock.io/static/a79b27d4889409602174df4710102056/RS-whitepaper.pdf',
},
{
label: 'RIF Whitepaper',
href: 'https://rootstock.io/static/add903ce229a6f45a606cd78b028cf9e/RIF-whitepaper-V2.pdf',
},
],
},
{
title: 'RESOURCES',
items: [
{
label: 'Merged Mining',
href: 'https://rootstock.io/mine-btc-with-rootstock/',
},
{
label: 'Rootstock Explorer',
href: 'https://explorer.rootstock.io/',
},
{
label: 'About RootstockLabs',
href: 'https://www.rootstocklabs.com/about-us/',
},
{
label: 'Blog',
href: 'https://blog.rootstock.io/',
},
],
},
],
copyright: `© ${new Date().getFullYear()}. RootstockLabs. All rights reserved`
},
socials: {
discord: 'http://discord.gg/rootstock',
x: 'https://twitter.com/rootstock_io',
telegram: 'https://t.me/rskofficialcommunity'
},
tagline: {
text1: 'Build',
text2: 'Together',
},
prism: {
theme: prismThemes.github,
darkTheme: prismThemes.oneDark,
additionalLanguages: ['powershell', 'bash', 'javascript'],
},
algolia: {
// The application ID provided by Algolia
appId: 'WAFPQL14PU',
// Public API key: it is safe to commit it
apiKey: '78aa26683ec349ff7e4a7c2d723e4cb7',
indexName: 'dev-rootstock',
// Optional: see doc section below
contextualSearch: false,
},
}),
};
export default config;