diff options
Diffstat (limited to '')
-rw-r--r-- | docs/runtime/plugins.md | 2 |
1 files changed, 1 insertions, 1 deletions
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"] |