diff options
author | 2023-09-24 17:49:14 +0200 | |
---|---|---|
committer | 2023-09-24 08:49:14 -0700 | |
commit | ef7f679edfbc5b0617ee368942d5792637bfd9f3 (patch) | |
tree | ce82dd27b895d374a127ed6f1e008cb0982d7f7a | |
parent | 57010cc44883a5434276cee956bc84a0485d2f32 (diff) | |
download | bun-ef7f679edfbc5b0617ee368942d5792637bfd9f3.tar.gz bun-ef7f679edfbc5b0617ee368942d5792637bfd9f3.tar.zst bun-ef7f679edfbc5b0617ee368942d5792637bfd9f3.zip |
Fix link to vitejs (#5959)
-rw-r--r-- | docs/runtime/hot.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/runtime/hot.md b/docs/runtime/hot.md index 6ca9f3d71..c54868689 100644 --- a/docs/runtime/hot.md +++ b/docs/runtime/hot.md @@ -67,7 +67,7 @@ $ bun --watch test Use `bun --hot` to enable hot reloading when executing code with Bun. This is distinct from `--watch` mode in that Bun does not hard-restart the entire process. Instead, it detects code changes and updates its internal module cache with the new code. -**Note** — This is not the same as hot reloading in the browser! Many frameworks provide a "hot reloading" experience, where you can edit & save your frontend code (say, a React component) and see the changes reflected in the browser without refreshing the page. Bun's `--hot` is the server-side equivalent of this experience. To get hot reloading in the browser, use a framework like [Vite](https://vite.dev). +**Note** — This is not the same as hot reloading in the browser! Many frameworks provide a "hot reloading" experience, where you can edit & save your frontend code (say, a React component) and see the changes reflected in the browser without refreshing the page. Bun's `--hot` is the server-side equivalent of this experience. To get hot reloading in the browser, use a framework like [Vite](https://vitejs.dev). ```bash $ bun --hot server.ts |