← 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-unknown
Verify target
rustup target list --installed | grep wasm
Step 3 / 13