The dx serve
can start a dev server with hot-reloading
dioxus-serve
Build, watch & serve the Rust WASM app and all of its assets
USAGE:
dx serve [OPTIONS]
OPTIONS:
--example <EXAMPLE> [default: ""]
--platform <PLATFORM> [default: "default_platform"]
--release [default: false]
--hot-reload [default: false]
--bin [default: None]
You can use this command to build project and start a dev server:
dx serve
You can use the example
option to serve a example:
# serve the `test` example
dx serve --exmaple test
You can add the --bin
option to select which crate you want Dioxus to build and serve:
dx serve --bin app
You can add the --open
option to open system default browser when server startup:
dx serve --open
You can add the --hot-reload
flag to enable rsx hot reloading. This will allow you to reload some rsx changes without a full recompile:
dx serve --open
You can add the cross-origin-policy
option to change cross-origin header to:
Cross-Origin-Opener-Policy: same-origin
Cross-Origin-Embedder-Policy: require-corp
dx serve --corss-origin-policy