Disable Error Overlay on Markdown image not found #11247
-
Hi, I'm importing an old wiki into Docusaurus and I've a long way to go. As part of the initial prep, I wanted to view the site and all it's markdown as it currently stands. But the site fails with missing/ broken images referenced in the Markdown. While I'll care about that in the future - during this stage, I'd like to disable that error/ warning and allow the site to continue to build/ load/ render. I had assumed that by setting ❓ Can the overlay be disabled? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
We can't disable the error overlay, however it seems we have 3 users requesting to disable these broken image error messages on the same week, so we'll likely implement something soon. Related issue: #11219
The CommonMark mode means it will parse standard Markdown syntax, but it doesn't mean that it will entirely disable our markdown processing pipeline under the hood. Even if your doc is parsed in a less strict way and supports regular Markdown syntax, it's still compiled by MDX and outputs a React component under the hood, and we still use our regular pipeline to check images and links. |
Beta Was this translation helpful? Give feedback.
We can't disable the error overlay, however it seems we have 3 users requesting to disable these broken image error messages on the same week, so we'll likely implement something soon.
Related issue: #11219
The CommonMark mode means it will parse standard Markdown syntax, but it doesn't mean that it will entirely disable our markdown processing pipeline under the hood. Even if your doc is parsed in a less strict way and supports regular Markdown syntax, it's still compiled by MDX and outputs a Reac…