WASM on Windows local IIS

Deployment docs say: " Note that current browsers only execute WebAssembly code in files loaded via HTTP(S) from a remote server."

To test various browsers from my computer without having a remote server, can I run I run my WASM Ap under local IIS?

I am running Web Assembly hosted on an IIS - without https.
Works fine.

Yes, you can use local IIS, or simply launch the project in the debugger, which hosts a small smile HTTP server for you. the only thing that does not work is pointing your browser to “file:///path/to/index.html” on your local disk.

Thanks, guys.

1 Like