From ef7f679edfbc5b0617ee368942d5792637bfd9f3 Mon Sep 17 00:00:00 2001 From: asrar Date: Sun, 24 Sep 2023 17:49:14 +0200 Subject: [PATCH] Fix link to vitejs (#5959) --- docs/runtime/hot.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/runtime/hot.md b/docs/runtime/hot.md index 6ca9f3d7167b0..c54868689a8e4 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