Skip to content

Commit

Permalink
Fix broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
Reboot-Codes committed Sep 30, 2024
1 parent 914dceb commit ce9b219
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions docs/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const config: Config = {
organizationName, // Usually your GitHub org/user name.
projectName, // Usually your repo name.

onBrokenLinks: 'throw',
onBrokenLinks: 'warn',
onBrokenMarkdownLinks: 'warn',

// Even if you don't use internationalization, you can use this field to set
Expand Down Expand Up @@ -70,7 +70,7 @@ const config: Config = {
type: 'docSidebar',
sidebarId: 'docsSidebar',
position: 'left',
label: 'Docs',
label: 'Manual',
},
{
href: `https://github.com/${organizationName}/${projectName}`,
Expand All @@ -86,8 +86,12 @@ const config: Config = {
title: 'Docs',
items: [
{
label: 'Intro',
to: '/docs/intro',
label: 'Guide',
to: '/docs/guide/intro',
},
{
label: 'Manual',
to: '/docs/components/intro',
},
],
},
Expand Down

0 comments on commit ce9b219

Please sign in to comment.