Skip to content

Commit 1653278

Browse files
committed
Merge branch 'master' of github.com:DioxusLabs/dioxus
2 parents 3f130d9 + a10e3ef commit 1653278

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/router/src/guide/getting-started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
Before we start utilizing Dioxus Router, we need to initialize a Dioxus web application.
33

44
#### Required Tools
5-
If you haven't already, make sure you install the [trunk](https://trunkrs.dev/) build tool and the rust ``wasm32-unknown-unknown`` target:
5+
If you haven't already, make sure you install the [dioxus-cli](https://dioxuslabs.com/nightly/cli/) build tool and the rust ``wasm32-unknown-unknown`` target:
66
```
7-
$ cargo install trunk
7+
$ cargo install dioxus-cli
88
...
99
$ rustup target add wasm32-unkown-unknown
1010
...
@@ -60,9 +60,9 @@ fn app(cx: Scope) -> Element {
6060

6161
Our project is now setup! To make sure everything is running correctly, in the root of your project run:
6262
```
63-
trunk serve
63+
dioxus serve --platform web
6464
```
6565
Then head to [http://localhost:8080](http://localhost:8080) in your browser, and you should see ``Hello, wasm!`` on your screen.
6666

6767
#### Conclusion
68-
We setup a new project with Dioxus and got everything running correctly. Next we'll create a small homepage and start our journey with Dioxus Router.
68+
We setup a new project with Dioxus and got everything running correctly. Next we'll create a small homepage and start our journey with Dioxus Router.

0 commit comments

Comments
 (0)