> ## Documentation Index
> Fetch the complete documentation index at: https://docs.observerbee.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Development

> Preview changes to these docs locally.

This site is built with [Mintlify](https://mintlify.com). To preview changes locally:

<Steps>
  <Step title="Install the Mintlify CLI">
    ```bash theme={null}
    npm i -g mint
    ```

    Requires Node.js 19 or higher.
  </Step>

  <Step title="Run the dev server">
    From the repository root (where `docs.json` lives):

    ```bash theme={null}
    mint dev
    ```

    The preview is served at `http://localhost:3000`. Use `--port` to change the port.
  </Step>
</Steps>

## Checking links

```bash theme={null}
mint broken-links
```

Run this before opening a pull request; it catches references to pages that do not exist.

## Troubleshooting

* If the local preview does not match production, update the CLI: `npm i -g mint@latest`.
* If the CLI errors in unexpected ways, delete `~/.mintlify` and run `mint dev` again.
