-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
79 lines (78 loc) · 1.88 KB
/
Copy pathdocusaurus.config.js
File metadata and controls
79 lines (78 loc) · 1.88 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
const siteConfig = {
title: "TrustVC Documentation",
tagline: "Documentation for TrustVC — Verifiable Credentials framework.",
url: "https://docs.trustvc.io",
baseUrl: "/",
projectName: "TrustVC-Documentation",
organizationName: "TrustVC",
favicon: "img/favicon.svg",
onBrokenLinks: "warn",
onBrokenMarkdownLinks: "warn",
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
path: "./docs",
sidebarPath: require.resolve("./sidebars.json"),
sidebarCollapsible: true,
routeBasePath: "docs",
},
theme: {
customCss: [
require.resolve("./src/css/custom.css"),
require.resolve("./src/css/tailwind.css"),
],
},
},
],
],
themeConfig: {
colorMode: {
defaultMode: "light",
disableSwitch: false,
respectPrefersColorScheme: true,
},
navbar: {
logo: {
alt: "TrustVC Logo",
src: "img/logo/trustvc-logo-light.svg",
srcDark: "img/logo/trustvc-logo-dark.svg",
},
items: [
{
to: "/docs/getting-started",
position: "left",
label: "Documentation",
},
{
href: "https://github.com/TrustVC",
label: "GitHub",
position: "right",
},
],
},
footer: {
style: "dark",
links: [
{
title: "Documentation",
items: [
{ label: "Getting Started", to: "/docs/getting-started" },
],
},
{
title: "Community",
items: [
{ label: "GitHub", href: "https://github.com/TrustVC" },
],
},
],
copyright: `Copyright \u00A9 ${new Date().getFullYear()} TrustVC`,
},
prism: {
theme: require("prism-react-renderer").themes.nightOwl,
},
},
};
module.exports = siteConfig;