← All Workshops
MudEngine Part 1: Requirements
Step 3 / 13
Add the WASM target
Dioxus apps compile to WebAssembly (WASM) to run in the browser. We need to add the `wasm32-unknown-unknown` target via rustup.
Install WASM target
rustup target add wasm32-unknown-unknownVerify target
rustup target list --installed | grep wasmStep 3 / 13