Skip to content

Commit afdbb1f

Browse files
committed
fix docusaurus baseUrl add cookie consent no-release docker-false
1 parent 342a65c commit afdbb1f

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

docs/docusaurus.config.ts

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ const config: Config = {
8383
label: "Get Started",
8484
to: "/docs/getting-started",
8585
},
86+
{
87+
label: "Contributing",
88+
to: "/docs/contributing",
89+
},
8690
],
8791
},
8892
{
@@ -103,18 +107,33 @@ const config: Config = {
103107
},
104108
{
105109
label: "GitHub",
106-
href: "https://github.com/facebook/docusaurus",
110+
href: "https://github.com/caioricciuti/ch-ui?utm_source=ch-ui-docs&utm_medium=footer",
107111
},
108112
],
109113
},
110114
],
111115
copyright: `${new Date().getFullYear()} CH-UI made with ❤`,
112116
},
117+
113118
prism: {
114119
theme: prismThemes.github,
115120
darkTheme: prismThemes.dracula,
116121
},
117122
} satisfies Preset.ThemeConfig,
123+
124+
scripts: [
125+
{
126+
src: "https://umami.caioricciuti.com/script.js",
127+
"data-website-id": "ba7d406b-f617-44ac-9c7f-6c3b864fa863",
128+
async: true,
129+
},
130+
{
131+
src: "https://consent.cookiebot.com/uc.js",
132+
"data-cbid": "92463182-1238-4c58-82fb-86dd7fc0c26a",
133+
"data-blockingmode": "auto",
134+
async: true,
135+
},
136+
],
118137
};
119138

120139
export default config;

0 commit comments

Comments
 (0)