← 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-unknown
Verify target
rustup target list --installed
Step 5 / 19