Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@ You can run a copy of this website locally within a few steps. Some folks find t
# [INFO] Use `npm run serve` command to test your build locally.
# ✨ Done in 105.96s.
```

> [!TIP]
> If the build command is failing due to broken anchors,
> it is possible to ignore these temporarily by running `ON_BROKEN_ANCHORS=ignore yarn build` instead.

1. Start the local web-server:

Expand Down
2 changes: 1 addition & 1 deletion docusaurus.config.en.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const config = {
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
onDuplicateRoutes: "throw",
onBrokenAnchors: "throw",
onBrokenAnchors: process.env.ON_BROKEN_ANCHORS ?? "throw",
favicon: "img/docs_favicon.ico",
organizationName: "ClickHouse",
trailingSlash: false,
Expand Down