docs.json configuration, or broken component references.
Find the error
- Go to [Project] → Deployments in your Mintlify dashboard.
- Click the failed deployment to open its details.
- 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 syntax errors
- docs.json errors
- Missing files
MDX is stricter than Markdown. Common mistakes:
- Unclosed JSX tags (for example,
<Note>without</Note>) - HTML entities that need escaping (use
&instead of&,<instead of<) - Invalid frontmatter YAML (missing quotes around strings with special characters)