forked from bonadocs/paycrest-docs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocusaurus.config.js
57 lines (55 loc) · 1.21 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
// @ts-check
import {themes as prismThemes} from 'prism-react-renderer';
/** @type {import('@docusaurus/types').Config} */
export default {
"title": "Paycrest",
"tagline": "Generated with Bonadocs",
"favicon": "img/favicon.ico",
"url": "https://your-documentation-site.com",
"baseUrl": "/",
"onBrokenLinks": "throw",
"onBrokenMarkdownLinks": "warn",
"i18n": {
"defaultLocale": "en",
"locales": [
"en"
]
},
"presets": [
[
"classic",
{
"docs": {
"routeBasePath": "/",
"sidebarPath": "./sidebars.js",
"editUrl": "https://github.com/undefined/undefined/tree/main/"
},
"theme": {
"customCss": "./src/css/custom.css"
}
}
]
],
"themeConfig": {
"image": "img/docusaurus-social-card.jpg",
"navbar": {
"title": "Paycrest",
"logo": {
"alt": "Paycrest Logo",
"src": "img/logo.svg"
},
"items": [
{
"type": "docSidebar",
"sidebarId": "contractSidebar",
"position": "left",
"label": "Contracts"
}
]
},
"prism": {
"theme": prismThemes.github,
"darkTheme": prismThemes.dracula
}
}
};