aboutsummaryrefslogtreecommitdiff
path: root/docs/runtime
diff options
context:
space:
mode:
authorGravatar Colin McDonnell <colinmcd94@gmail.com> 2023-09-14 21:02:52 -0700
committerGravatar Colin McDonnell <colinmcd94@gmail.com> 2023-09-14 21:02:52 -0700
commit31691e3898ff9fe4d51092a9d1c49388a2ad97ed (patch)
tree4f51e26fd61712e83ac9111c44a4b6a89ce159f1 /docs/runtime
parent332141a6f2bf61344bad4da400aec7f12173d9a9 (diff)
downloadbun-31691e3898ff9fe4d51092a9d1c49388a2ad97ed.tar.gz
bun-31691e3898ff9fe4d51092a9d1c49388a2ad97ed.tar.zst
bun-31691e3898ff9fe4d51092a9d1c49388a2ad97ed.zip
Fix links
Diffstat (limited to '')
-rw-r--r--docs/runtime/jsx.md2
-rw-r--r--docs/runtime/plugins.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/runtime/jsx.md b/docs/runtime/jsx.md
index 3d37dbe01..31a61652b 100644
--- a/docs/runtime/jsx.md
+++ b/docs/runtime/jsx.md
@@ -14,7 +14,7 @@ console.log(<Component message="Hello world!" />);
## Configuration
-Bun reads your `tsconfig.json` or `jsconfig.json` configuration files to determines how to perform the JSX transform internally. To avoid using either of these, the following options can also be defined in [`bunfig.toml`](/docs/runtime/configuration).
+Bun reads your `tsconfig.json` or `jsconfig.json` configuration files to determines how to perform the JSX transform internally. To avoid using either of these, the following options can also be defined in [`bunfig.toml`](/docs/runtime/bunfig).
The following compiler options are respected.
diff --git a/docs/runtime/plugins.md b/docs/runtime/plugins.md
index a1525790a..8f5bf21e2 100644
--- a/docs/runtime/plugins.md
+++ b/docs/runtime/plugins.md
@@ -17,7 +17,7 @@ const myPlugin: BunPlugin = {
};
```
-Plugins have to be registered before any other code runs! To achieve this, use the `preload` option in your [`bunfig.toml`](/docs/runtime/configuration). Bun automatically loads the files/modules specified in `preload` before running a file.
+Plugins have to be registered before any other code runs! To achieve this, use the `preload` option in your [`bunfig.toml`](/docs/runtime/bunfig). Bun automatically loads the files/modules specified in `preload` before running a file.
```toml
preload = ["./myPlugin.ts"]