diff options
-rw-r--r-- | docs/runtime/env.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/runtime/env.md b/docs/runtime/env.md index 9c6789a95..2e9205544 100644 --- a/docs/runtime/env.md +++ b/docs/runtime/env.md @@ -25,6 +25,10 @@ Or programmatically by assigning a property to `process.env`. process.env.FOO = "hello"; ``` +### `dotenv` + +Generally speaking, you won't need `dotenv` anymore, because Bun reads `.env` files automatically. + ## Reading environment variables The current environment variables can be accessed via `process.env`. |