
Download the right ChromeDriver version & keep it up to date on Windows/Linux/macOS using C# .NET
-
.NET
Chrome frequently updates automatically causing ChromeDriver versions to mismatch. Using C# .NET you can download the correct version of the ChromeDriver and keep it up-to-date.

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.

Download the right ChromeDriver version & keep it up to date on Windows/Linux/macOS using PowerShell
-
PowerShell
Chrome frequently updates automatically causing ChromeDriver versions to mismatch. Using PowerShell you can download the correct version of the ChromeDriver and keep it up-to-date.

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.