Skip to content

Commit 1301cc3

Browse files
authored
Updates
1 parent 3cb1b30 commit 1301cc3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

aspnetcore/blazor/fundamentals/signalr.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1456,8 +1456,12 @@ Use a <xref:Microsoft.AspNetCore.Components.Server.Circuits.CircuitHandler> to c
14561456

14571457
## Start the SignalR circuit at a different URL
14581458

1459-
In the `App` component (`App.razor`), change the Blazor Web App script to prevent automatically starting the app and establish the circuit URL manually. The following example uses the path `/signalr`:
1459+
In the `App` component (`App.razor`):
14601460

1461+
* Prevent automatically starting the app by adding `autostart="false"` to the Blazor script tag.
1462+
* Establish the circuit URL manually using `Blazor.start`.
1463+
1464+
The following example uses the path `/signalr`:
14611465

14621466
```diff
14631467
- <script src="_framework/blazor.web.js"></script>

0 commit comments

Comments
 (0)