Skip to main content

Documentation Index

Fetch the complete documentation index at: https://help-center-starter-replace-template-content.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Build failures prevent your changes from going live. They’re usually caused by MDX syntax errors, invalid docs.json configuration, or broken component references.

Find the error

  1. Go to [Project] → Deployments in your Mintlify dashboard.
  2. Click the failed deployment to open its details.
  3. Open the Build log tab. The error message near the bottom of the log usually identifies the file and line number causing the failure.

Common failure causes

MDX is stricter than Markdown. Common mistakes:
  • Unclosed JSX tags (for example, <Note> without </Note>)
  • HTML entities that need escaping (use &amp; instead of &, &lt; instead of <)
  • Invalid frontmatter YAML (missing quotes around strings with special characters)
Fix: Find the file and line mentioned in the build log and correct the syntax.

Test locally before pushing

Use the Mintlify CLI to catch errors before they reach your repository:
npm i -g mintlify
mintlify dev
The local dev server shows the same errors the build system would catch. Fix issues locally and push only when the local preview looks correct.

Revert if needed

If a deploy broke your live site, the quickest recovery is to revert the commit in Git. Mintlify deploys the reverted version automatically on the next push.