Skip to content

Commit bd79a11

Browse files
committed
fix docusaurus config
1 parent 8ed8261 commit bd79a11

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

docs/docusaurus.config.js

+29-29
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const config = {
55
title: "eliza",
66
tagline: "The flexible, scalable AI agent for everyone",
77
favicon: "img/favicon.ico",
8-
8+
99
// GitHub Pages Configuration
1010
url: "https://ai16z.github.io",
1111
baseUrl: "/eliza/",
@@ -15,7 +15,7 @@ const config = {
1515
trailingSlash: true,
1616
onBrokenLinks: "throw",
1717
onBrokenMarkdownLinks: "warn",
18-
18+
1919
i18n: {
2020
defaultLocale: "en",
2121
locales: ["en"],
@@ -24,7 +24,7 @@ const config = {
2424
mermaid: true,
2525
},
2626
themes: [
27-
"@docusaurus/theme-mermaid",
27+
'@docusaurus/theme-mermaid',
2828
// Any other themes...
2929
],
3030
plugins: [
@@ -35,7 +35,7 @@ const config = {
3535
entryPoints: ["src/index.ts"],
3636
tsconfig: "../tsconfig.json",
3737
out: "./api",
38-
skipErrorChecking: true,
38+
skipErrorChecking: true,
3939
},
4040
],
4141
// Search functionality
@@ -72,7 +72,7 @@ const config = {
7272
({
7373
// Enable dark mode by default
7474
colorMode: {
75-
defaultMode: "dark",
75+
defaultMode: 'dark',
7676
disableSwitch: false,
7777
respectPrefersColorScheme: true,
7878
},
@@ -107,50 +107,50 @@ const config = {
107107
href: "https://github.com/ai16z/eliza",
108108
label: "GitHub",
109109
position: "right",
110-
},
111-
],
110+
}
111+
]
112112
},
113113
footer: {
114-
style: "dark",
114+
style: 'dark',
115115
links: [
116116
{
117-
title: "Docs",
117+
title: 'Docs',
118118
items: [
119-
{
120-
label: "General",
121-
href: "./",
119+
{
120+
label: 'General',
121+
href: './'
122122
},
123-
],
123+
]
124124
},
125125
{
126-
title: "Community",
126+
title: 'Community',
127127
items: [
128128
{
129-
label: "Discord",
130-
href: "https://discord.gg/NQHKW7US",
129+
label: 'Discord',
130+
href: 'https://discord.gg/NQHKW7US'
131131
},
132132
{
133-
label: "Twitter",
134-
href: "https://twitter.com/pmairca",
135-
},
136-
],
133+
label: 'Twitter',
134+
href: 'https://twitter.com/pmairca'
135+
}
136+
]
137137
},
138138
{
139-
title: "More",
139+
title: 'More',
140140
items: [
141141
{
142-
label: "GitHub",
143-
href: "https://github.com/ai16z/eliza",
144-
},
145-
],
146-
},
142+
label: 'GitHub',
143+
href: 'https://github.com/ai16z/eliza'
144+
}
145+
]
146+
}
147147
],
148-
copyright: `Copyright © ${new Date().getFullYear()} ai16z.ai`,
148+
copyright: `Copyright © ${new Date().getFullYear()} ai16z.ai`
149149
},
150150
prism: {
151151
theme: prismThemes.github,
152-
darkTheme: prismThemes.dracula,
153-
},
152+
darkTheme: prismThemes.dracula
153+
}
154154
}),
155155
};
156156
export default config;

0 commit comments

Comments
 (0)