← All Workshops
MudEngine Part 1: Requirements
Step 5 / 19
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 --installedStep 5 / 19