-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
127 lines (127 loc) · 3.11 KB
/
docusaurus.config.js
File metadata and controls
127 lines (127 loc) · 3.11 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
module.exports={
"title": "Pixelorama",
"tagline": "Pixelorama, your free & open source sprite editor.",
"url": "https://www.pixelorama.org",
"baseUrl": "/",
"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",
"markdown": {
"hooks": {
"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/custom.css"
}
}
]
],
"plugins": [require.resolve('docusaurus-lunr-search')],
"themeConfig": {
"docs": {
"sidebar": {
"hideable": true,
},
},
"navbar": {
"title": "Pixelorama",
"logo": {
"src": "./img/favicon.ico"
},
"items": [
{
"to": "/Introduction",
"label": "Docs",
"position": "left"
},
{
"to": "blog",
"label": "Blog",
"position": "left"
},
{
"href": "https://github.com/Orama-Interactive/Pixelorama-Docs",
"label": "GitHub",
"position": "left"
},
{
"href": "https://www.patreon.com/c/OramaInteractive/s",
"label": "Support Us ❤️",
"position": "right"
}
]
},
"image": "img/undraw_online.svg",
"footer": {
"links": [
{
"title": "Community",
"items": [
{
"label": "Steam",
"to": "https://store.steampowered.com/app/2779170/Pixelorama/"
},
{
"label": "Patreon",
"to": "https://www.patreon.com/c/OramaInteractive/"
},
{
"label": "Itch.io",
"to": "https://orama-interactive.itch.io/pixelorama"
},
{
"label": "Discord",
"to": "https://discord.gg/GTMtr8s"
},
]
},
{
"title": "Social media",
"items": [
{
"label": "Mastodon",
"to": "https://mastodon.art/@Pixelorama"
},
{
"label": "Bluesky",
"to": "https://bsky.app/profile/pixelorama.bsky.social"
},
{
"label": "YouTube",
"to": "https://www.youtube.com/@OramaInteractive"
},
]
},
],
"copyright": "Copyright © 2020-present Orama Interactive",
"logo": {
"src": "./img/orama_logo.svg",
"alt": "Orama Interactive Logo"
}
}
}
}