Skip to content

Commit

Permalink
Merge pull request #7 from coredao-org/sh/baseurl-fixes
Browse files Browse the repository at this point in the history
Remove /CoreDAO-Docs prefix from redirects
  • Loading branch information
shuber authored Jun 21, 2024
2 parents 1dffdf6 + cbc476a commit a740f9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function Api() {
title={`Hello from ${siteConfig.title}`}
description="Official Documentation for Core DAO/>">
<main>
return <Redirect to='/CoreDAO-Docs/docs/api' />;
return <Redirect to='/docs/api' />;
</main>
</Layout>
);
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function Home() {
title={`Hello from ${siteConfig.title}`}
description="Official Documentation for Core DAO/>">
<main>
return <Redirect to='/CoreDAO-Docs/docs/intro' />;
return <Redirect to='/docs/intro' />;
</main>
</Layout>
);
Expand Down

0 comments on commit a740f9b

Please sign in to comment.