diff --git a/aspnetcore/blazor/fundamentals/signalr.md b/aspnetcore/blazor/fundamentals/signalr.md index 4644e9951b9e..df6567d61468 100644 --- a/aspnetcore/blazor/fundamentals/signalr.md +++ b/aspnetcore/blazor/fundamentals/signalr.md @@ -1452,6 +1452,32 @@ Use a to c :::moniker-end +:::moniker range=">= aspnetcore-8.0" + +## Start the SignalR circuit at a different URL + +Prevent automatically starting the app by adding `autostart="false"` to the Blazor ` ++ ++ +``` + +Add the following call with the `/signalr` path to the middleware processing pipeline in the server app's `Program` file: + +```csharp +app.MapBlazorHub("/signalr"); +``` + +:::moniker-end + ## `IHttpContextAccessor`/`HttpContext` in Razor components [!INCLUDE[](~/blazor/security/includes/httpcontext.md)]