From e2fb524993137bce0a6d3a2a45783877efff4f82 Mon Sep 17 00:00:00 2001 From: Colin McDonnell Date: Tue, 19 Sep 2023 22:42:54 -0700 Subject: [PATCH] Fix broken links --- docs/guides/install/custom-registry.md | 2 +- docs/guides/install/registry-scope.md | 2 +- docs/guides/runtime/read-env.md | 2 +- docs/guides/runtime/set-env.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guides/install/custom-registry.md b/docs/guides/install/custom-registry.md index 64b3cf76b6..12bb3b77f8 100644 --- a/docs/guides/install/custom-registry.md +++ b/docs/guides/install/custom-registry.md @@ -18,7 +18,7 @@ registry = "https://username:password@registry.npmjs.org" --- -Your `bunfig.toml` can reference environment variables. Bun automatically loads environment variables from `.env.local`, `.env.[NODE_ENV]`, and `.env`. See [Docs > Environment variables](/docs/cli/run#environment-variables) for more information. +Your `bunfig.toml` can reference environment variables. Bun automatically loads environment variables from `.env.local`, `.env.[NODE_ENV]`, and `.env`. See [Docs > Environment variables](/docs/runtime/env) for more information. ```toml#bunfig.toml [install] diff --git a/docs/guides/install/registry-scope.md b/docs/guides/install/registry-scope.md index 68d8cf9428..aade231164 100644 --- a/docs/guides/install/registry-scope.md +++ b/docs/guides/install/registry-scope.md @@ -24,7 +24,7 @@ Bun does not read `.npmrc` files; instead private registries are configured via --- -Your `bunfig.toml` can reference environment variables. Bun automatically loads environment variables from `.env.local`, `.env.[NODE_ENV]`, and `.env`. See [Docs > Environment variables](/docs/cli/run#environment-variables) for more information. +Your `bunfig.toml` can reference environment variables. Bun automatically loads environment variables from `.env.local`, `.env.[NODE_ENV]`, and `.env`. See [Docs > Environment variables](/docs/runtime/env) for more information. ```toml#bunfig.toml [install.scopes] diff --git a/docs/guides/runtime/read-env.md b/docs/guides/runtime/read-env.md index 512f731dda..7295a67265 100644 --- a/docs/guides/runtime/read-env.md +++ b/docs/guides/runtime/read-env.md @@ -29,4 +29,4 @@ FOOBAR=aaaaaa --- -See [Docs > Runtime > Environment variables](/docs/cli/run#environment-variables) for more information on using environment variables with Bun. +See [Docs > Runtime > Environment variables](/docs/runtime/env) for more information on using environment variables with Bun. diff --git a/docs/guides/runtime/set-env.md b/docs/guides/runtime/set-env.md index 97cac34884..684da940af 100644 --- a/docs/guides/runtime/set-env.md +++ b/docs/guides/runtime/set-env.md @@ -34,4 +34,4 @@ $ FOO=helloworld bun run dev --- -See [Docs > Runtime > Environment variables](/docs/cli/run#environment-variables) for more information on using environment variables with Bun. +See [Docs > Runtime > Environment variables](/docs/runtime/env) for more information on using environment variables with Bun.