Skip to content

Commit

Permalink
Merge pull request #194 from lf-lang/throw-on-broken-link
Browse files Browse the repository at this point in the history
Throw, not warn, on broken links
  • Loading branch information
lhstrh authored Dec 15, 2023
2 parents 2aae2b6 + 0de3bff commit d4c9068
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ const config: Config = {
organizationName: 'lf-lang', // Usually your GitHub org/user name.
projectName: 'lingua-franca', // Usually your repo name.

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

// 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 d4c9068

Please sign in to comment.