@@ -43,7 +43,7 @@ dx build --platform web
You can add the `--bin` option to select which crate you want Dioxus to build:
```
-dioxus build --bin app
+dx build --bin app
## Build Example
@@ -23,5 +23,5 @@ dx clean
You can add the `--bin` option to select which crate you want Dioxus to clean artifacts from:
-dioxus clean --bin app
+dx clean --bin app
@@ -37,7 +37,7 @@ dx serve --exmaple test
You can add the `--bin` option to select which crate you want Dioxus to build and serve:
-dioxus serve --bin app
+dx serve --bin app
## Open Browser
@@ -7,7 +7,7 @@ Once you have the Dioxus CLI tool installed, you can use it to create dioxus pro
First, run the `dx create` command to create a new project ready to be used with Dioxus and the Dioxus CLI:
-dioxus create hello-dioxus
+dx create hello-dioxus
> It will clone a default template from github template: [DioxusLabs/dioxus-template](https://github.com/DioxusLabs/dioxus-template)
@@ -1,7 +1,7 @@
//! Run with:
//!
//! ```sh
-//! dioxus build --features web
+//! dx build --features web
//! cargo run --features ssr
//! ```