Skip to content

Commit 1efabad

Browse files
committed
fix issue with navigating to pages by markdown relative links
1 parent a3eff63 commit 1efabad

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

frontend/docusaurus.config.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ const config: Config = {
1616
// For GitHub pages deployment, it is often '/<projectName>/'
1717
baseUrl: "/",
1818

19+
// Remove trailing slash at the end, it's added by either the host or CF
20+
trailingSlash: false,
21+
1922
// GitHub pages deployment config.
2023
// If you aren't using GitHub pages, you don't need these.
2124
organizationName: "openmultiplayer", // Usually your GitHub org/user name.
@@ -293,7 +296,7 @@ const config: Config = {
293296
],
294297
},
295298
],
296-
copyright: `Copyright © ${new Date().getFullYear()} open.mp, Inc. Built with Docusaurus.`,
299+
copyright: `Copyright © ${new Date().getFullYear()} open.mp. Built with Docusaurus.`,
297300
},
298301
prism: {
299302
theme: prismThemes.github,

0 commit comments

Comments
 (0)