-
Notifications
You must be signed in to change notification settings - Fork 17
/
docusaurus.config.js
96 lines (93 loc) · 2.27 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
module.exports={
"title": "Pixelorama Documentation",
"tagline": "Documentation for Pixelorama, your free & open source sprite editor.",
"url": "https://Orama-Interactive.github.io/",
"baseUrl": "/Pixelorama-Docs/",
"organizationName": "Orama-Interactive",
"projectName": "Pixelorama-Docs",
"scripts": [
"https://buttons.github.io/buttons.js"
],
"favicon": "img/favicon.ico",
"customFields": {
"users": [],
"repoUrl": "https://github.com/Orama-Interactive/Pixelorama"
},
"onBrokenLinks": "log",
"onBrokenMarkdownLinks": "log",
"presets": [
[
"@docusaurus/preset-classic",
{
"docs": {
"showLastUpdateAuthor": true,
"showLastUpdateTime": true,
"editUrl": "https://github.com/Orama-Interactive/Pixelorama-Docs/edit/master/",
"path": "./docs",
"sidebarPath": "./sidebars.js",
"routeBasePath": "/"
},
"blog": {
"path": "blog"
},
"theme": {
"customCss": "src/css/customTheme.css"
}
}
]
],
"plugins": [],
"themeConfig": {
"algolia": {
"appId": 'Q1VSXGNOJI',
"apiKey": '9702a7187ea2079fe9def3138dd61b8b',
"indexName": 'pixelorama',
// Optional: see doc section bellow
"contextualSearch": false,
// Optional: Algolia search parameters
"searchParameters": {},
//... other Algolia params
},
"docs": {
"sidebar": {
"hideable": true,
},
},
"navbar": {
"title": "Pixelorama Documentation",
"logo": {
"src": "./img/favicon.ico"
},
"items": [
{
"to": "/",
"label": "Docs",
"position": "left"
},
{
"href": "https://github.com/Orama-Interactive/Pixelorama-Docs",
"label": "GitHub",
"position": "left"
}
]
},
"image": "img/undraw_online.svg",
"footer": {
"links": [
{
"title": "Community",
"items": [
{
"label": "Twitter",
"to": "https://twitter.com/OramaInteractiv"
}
]
}
],
"copyright": "Copyright © 2020-present Orama Interactive",
"logo": {
"src": "./img/oss_logo.png"
}
}
}
}