diff options
author | 2023-08-10 13:54:05 -0700 | |
---|---|---|
committer | 2023-08-10 13:54:17 -0700 | |
commit | 58e74eadb5ba0d109f127283a06ff3a96e9cc7bf (patch) | |
tree | efb2b24b6d760203aaffb1e1791b40b1eefa6bae | |
parent | be05b93f3985552af5c90c2075d8c18f9f58b21c (diff) | |
download | bun-58e74eadb5ba0d109f127283a06ff3a96e9cc7bf.tar.gz bun-58e74eadb5ba0d109f127283a06ff3a96e9cc7bf.tar.zst bun-58e74eadb5ba0d109f127283a06ff3a96e9cc7bf.zip |
Update remix guide
-rw-r--r-- | docs/guides/ecosystem/remix.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/guides/ecosystem/remix.md b/docs/guides/ecosystem/remix.md index 0ae0a69f9..ee6185294 100644 --- a/docs/guides/ecosystem/remix.md +++ b/docs/guides/ecosystem/remix.md @@ -39,7 +39,7 @@ $ bunx create-remix --- -To start the dev server, run `bun run dev` from the project root. +To start the dev server, run `bun run dev` from the project root. This will start the dev server using the `remix dev` command. Note that Node.js will be used to run the dev server. ```sh $ cd my-app @@ -55,4 +55,6 @@ $ bun run dev --- -Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. Any changes you make to `app/routes/_index.tsx` will be hot-reloaded in the browser. +Open [http://localhost:3000](http://localhost:3000) to see the app. Any changes you make to `app/routes/_index.tsx` will be hot-reloaded in the browser. + +{% image src="https://github.com/oven-sh/bun/assets/3084745/c26f1059-a5d4-4c0b-9a88-d9902472fd77" caption="Remix app running on localhost" /%} |