aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/README.md b/README.md
index 7c7845a15..586f9a18c 100644
--- a/README.md
+++ b/README.md
@@ -119,7 +119,13 @@ bun
To use an existing React app:
```bash
-bun create /absolute-path-to-react-app app
+# To enable React Fast Refresh, ensure "react-refresh" is installed
+npm install -D react-refresh
+
+# Generate a bundle for your entry point(s)
+bun bun ./src/index.js # jsx, tsx, ts also work. can be multiple files
+
+# Start the dev server
bun
```