-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocusaurus.config.js
60 lines (60 loc) · 1.41 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
module.exports = {
title: "PaperEdit",
// tagline: "Cut audio on paper",
url: "https://home.paperedit.app",
baseUrl: "/",
favicon: "imgs/favicon.ico",
// organizationName: "facebook", // Usually your GitHub org/user name.
// projectName: "docusaurus", // Usually your repo name.
themeConfig: {
navbar: {
title: "PaperEdit",
logo: {
alt: "PaperEdit Logo",
src: "imgs/favicon.svg",
},
links: [
{
href: "https://paperedit.app",
label: "App",
position: "left",
},
{
to: "docs/",
label: "About",
position: "left",
},
{
to: "docs/getting-started",
label: "Docs",
position: "left",
},
// {
// to: "docs/",
// label: "Donate",
// position: "right",
// className: "donate-btn",
// },
],
},
footer: {
style: "dark",
copyright: `Copyright © ${new Date().getFullYear()} Claudio Santos`,
},
},
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
// It is recommended to set document id as docs home page (`docs/` path).
homePageId: "about",
sidebarPath: require.resolve("./sidebars.js"),
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
};