Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/guides/frameworks/bun.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ import CliViewRunStep from "/snippets/step-view-run.mdx";
## Known issues

- Certain OpenTelemetry instrumentation will not work with Bun, because Bun does not support Node's `register` hook. This means that some libraries that rely on this hook will not work with Bun.
- If Bun is installed via Homebrew (e.g. `/opt/homebrew/bin/bun`), you may see an `ENOENT: spawn /Users/<you>/.bun/bin/bun` error because the CLI expects Bun at the default install path. **Workaround:** create a symlink:
```bash
ln -s $(which bun) ~/.bun/bin/bun
```

## Initial setup

Expand Down