Przeglądaj źródła

Change `trunk` to `dioxus-cli`

YuKun Liu 3 lat temu
rodzic
commit
9620dc05af
1 zmienionych plików z 4 dodań i 4 usunięć
  1. 4 4
      docs/router/src/guide/getting-started.md

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

@@ -2,9 +2,9 @@
 Before we start utilizing Dioxus Router, we need to initialize a Dioxus web application.
 
 #### Required Tools
-If you haven't already, make sure you install the [trunk](https://trunkrs.dev/) build tool and the rust ``wasm32-unknown-unknown`` target:
+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:
 ```
-$ cargo install trunk
+$ cargo install dioxus-cli
     ...
 $ rustup target add wasm32-unkown-unknown
     ...
@@ -60,9 +60,9 @@ fn app(cx: Scope) -> Element {
 
 Our project is now setup! To make sure everything is running correctly, in the root of your project run:
 ```
-trunk serve
+dioxus serve --platform web
 ```
 Then head to [http://localhost:8080](http://localhost:8080) in your browser, and you should see ``Hello, wasm!`` on your screen.
 
 #### Conclusion
-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.
+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.