# BUILD_TIMEOUT

**What it means.** The build ran longer than the limit and was stopped.

**What to do.** Remove heavy postinstall steps or large assets from the build, then re-run deploy.

- HTTP status: 422
- Retryable after applying the fix: yes

Every failure from the CLI or an MCP tool has this shape:

```json
{
  "ok": false,
  "code": "BUILD_TIMEOUT",
  "message": "The build ran longer than the limit and was stopped.",
  "fix": "Remove heavy postinstall steps or large assets from the build, then re-run deploy.",
  "file": "<where to edit, when known>",
  "retryable": true,
  "docs": "https://docs.uarpie.app/errors/BUILD_TIMEOUT"
}
```

Apply `fix` (edit `file` when it is given), then run the same command again.
