Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions aspnetcore/blazor/components/render-modes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: ASP.NET Core Blazor render modes
ai-usage: ai-assisted
author: guardrex
description: Learn about Blazor render modes and how to apply them in Blazor Web Apps.
monikerRange: '>= aspnetcore-8.0'
Expand Down Expand Up @@ -156,7 +157,7 @@ The <xref:Microsoft.AspNetCore.Components.Routing.Router> component propagates i

You also typically must set the same interactive render mode on the [`HeadOutlet` component](xref:blazor/components/control-head-content#headoutlet-component), which is also found in the `App` component of a Blazor Web App generated from the project template:

```
```razor
<HeadOutlet @rendermode="InteractiveServer" />
```

Expand All @@ -173,7 +174,7 @@ To enable global interactivity when creating a Blazor Web App:

For more information, see <xref:blazor/tooling>.

## Apply a render mode programatically
## Apply a render mode programmatically

Properties and fields can assign a render mode.

Expand Down