
How to deploy Blazor WebAssembly to Heroku
-
.NET
Heroku doesn't officially offer a static hosting service but does have an experimental 'buildpack' which gives you static hosting capabilities you can use to deploy and host Blazor WebAssembly.

How to deploy Blazor WebAssembly to AWS Amplify
-
.NET
Blazor WebAssembly can be served as static files. These files can be hosted in static hosting services such as AWS Amplify.

Use project Tye to host Blazor WASM and ASP.NET Web API on a single origin to avoid CORS
-
.NET
Using Microsoft's experimental Project Tye, you configured the proxy to forward requests to '/api' to the Web API, and all other requests to the Blazor WASM client.

How to deploy Blazor WebAssembly to Netlify
-
.NET
Now that you can run .NET web applications without server-side code, you can deploy these applications to various static site hosts, such as Netlify.

Use YARP to host client and API server on a single origin to avoid CORS
-
.NET
Using Microsoft's new reverse proxy "YARP", you configured the proxy to forward requests to '/api' to the Web API, and all other requests to the Blazor WASM client.