+ An unhandled error has occurred.
+
Reload
+
🗙
+
+-
++
+
+
+
+```
+
+## `HttpClient` response streaming enabled by default on WebAssembly
+
+Response streaming is now enabled by default for `HttpClient` in Blazor WebAssembly. This change improves performance and reduces memory usage when handling large responses. However, it also means the response stream no longer supports synchronous operations because it is no longer a `MemoryStream`. If your code requires using synchronous operations, you can opt-out of response streaming for an individual request using the `SetBrowserResponseStreamingEnabled` extension method on the response message:
+
+```csharp
+requestMessage.SetBrowserResponseStreamingEnabled(false);
+```
+
+## `DisableMatchAllIgnoresLeftUriPart` app context switch renamed to `EnableMatchAllForQueryStringAndFragment`
+
+The `Microsoft.AspNetCore.Components.Routing.NavLink.DisableMatchAllIgnoresLeftUriPart` app context switch was renamed to `Microsoft.AspNetCore.Components.Routing.NavLink.EnableMatchAllForQueryStringAndFragment`.
+
+## Set the environment at build-time for standalone Blazor WebAssembly apps
+
+You can now specify the environment for a standalone Blazor WebAssembly app at build-time using the `