Skip to content

Commit

Permalink
disabled throwing errors on invalid links
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Nov 15, 2024
1 parent 862e585 commit bbd776e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ const config: Config = {
url: 'https://ctu-mrs.github.io',
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: '/docusaurus_test/',
baseUrl: '/',

// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: 'ctu-mrs', // Usually your GitHub org/user name.
projectName: 'ctumrs', // Usually your repo name.

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

// Even if you don't use internationalization, you can use this field to set
// useful metadata like html lang. For example, if your site is Chinese, you
Expand Down

0 comments on commit bbd776e

Please sign in to comment.