You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aspnetcore/blazor/components/integration-hosted-webassembly.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -559,7 +559,7 @@ The persisted prerendered state is transferred to the client, where it's used to
559
559
* Authentication and authorization subjects that pertain to prerendering
560
560
*[General aspects](xref:blazor/security/index)
561
561
*[Prerendering with authentication in hosted Blazor WebAssembly apps](xref:blazor/security/webassembly/additional-scenarios#prerendering-with-authentication)
562
-
*[Host and deploy: Blazor WebAssembly](xref:blazor/host-and-deploy/webassembly)
*<xref:Microsoft.AspNetCore.Components.Routing.Router.OnNavigateAsync> is executed *twice* when prerendering: [Handle asynchronous navigation events with `OnNavigateAsync`](xref:blazor/fundamentals/routing#handle-asynchronous-navigation-events-with-onnavigateasync)
565
565
@@ -1074,7 +1074,7 @@ The persisted prerendered state is transferred to the client, where it's used to
1074
1074
* Authentication and authorization subjects that pertain to prerendering
Copy file name to clipboardExpand all lines: aspnetcore/blazor/components/integration.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ Use the following guidance to integrate Razor components into pages or views of
58
58
render-mode="ServerPrerendered" />
59
59
```
60
60
61
-
The `href` value (the *app base path*) in the preceding example assumes that the app resides at the root URL path (`/`). If the app is a sub-application, follow the guidance in the *App base path* section of the <xref:blazor/host-and-deploy/index#app-base-path> article.
61
+
The `href` value (the *app base path*) in the preceding example assumes that the app resides at the root URL path (`/`). If the app is a sub-application, see <xref:blazor/host-and-deploy/app-base-path>.
62
62
63
63
The <xref:Microsoft.AspNetCore.Components.Web.HeadOutlet> component is used to render head (`<head>`) content for page titles (<xref:Microsoft.AspNetCore.Components.Web.PageTitle> component) and other head elements (<xref:Microsoft.AspNetCore.Components.Web.HeadContent> component) set by Razor components. For more information, see <xref:blazor/components/control-head-content>.
64
64
@@ -556,7 +556,7 @@ To resolve the problem, use ***either*** of the following approaches:
556
556
*[Prerendering with JavaScript interop](xref:blazor/components/lifecycle#prerendering-with-javascript-interop)
557
557
*[Authentication and authorization: General aspects](xref:blazor/security/index#aspnet-core-blazor-authentication-and-authorization)
*<xref:Microsoft.AspNetCore.Components.Routing.Router.OnNavigateAsync> is executed *twice* when prerendering: [Handle asynchronous navigation events with `OnNavigateAsync`](xref:blazor/fundamentals/routing#handle-asynchronous-navigation-events-with-onnavigateasync)
562
562
@@ -589,7 +589,7 @@ Use the following guidance to integrate Razor components into pages or views of
The `href` value (the *app base path*) in the preceding example assumes that the app resides at the root URL path (`/`). If the app is a sub-application, follow the guidance in the *App base path* section of the <xref:blazor/host-and-deploy/index#app-base-path> article.
592
+
The `href` value (the *app base path*) in the preceding example assumes that the app resides at the root URL path (`/`). If the app is a sub-application, see <xref:blazor/host-and-deploy/app-base-path>.
593
593
594
594
The <xref:Microsoft.AspNetCore.Components.Web.HeadOutlet> component is used to render head (`<head>`) content for page titles (<xref:Microsoft.AspNetCore.Components.Web.PageTitle> component) and other head elements (<xref:Microsoft.AspNetCore.Components.Web.HeadContent> component) set by Razor components. For more information, see <xref:blazor/components/control-head-content>.
595
595
@@ -1075,7 +1075,7 @@ To resolve the problem, use ***either*** of the following approaches:
1075
1075
*[Prerendering with JavaScript interop](xref:blazor/components/lifecycle#prerendering-with-javascript-interop)
1076
1076
*[Authentication and authorization: General aspects](xref:blazor/security/index#aspnet-core-blazor-authentication-and-authorization)
@@ -1103,7 +1103,7 @@ An existing Razor Pages or MVC app can integrate Razor components into pages or
1103
1103
<basehref="~/" />
1104
1104
```
1105
1105
1106
-
The `href` value (the *app base path*) in the preceding example assumes that the app resides at the root URL path (`/`). If the app is a sub-application, follow the guidance in the *App base path* section of the <xref:blazor/host-and-deploy/index#app-base-path> article.
1106
+
The `href` value (the *app base path*) in the preceding example assumes that the app resides at the root URL path (`/`). If the app is a sub-application, see <xref:blazor/host-and-deploy/app-base-path>.
1107
1107
1108
1108
* Add a `<script>` tag for the `blazor.server.js` script immediately before the `Scripts` render section.
1109
1109
@@ -1507,7 +1507,7 @@ To resolve the problem, use ***either*** of the following approaches:
1507
1507
*[Prerendering with JavaScript interop](xref:blazor/components/lifecycle#prerendering-with-javascript-interop)
1508
1508
*[Authentication and authorization: General aspects](xref:blazor/security/index#aspnet-core-blazor-authentication-and-authorization)
@@ -1537,7 +1537,7 @@ An existing Razor Pages or MVC app can integrate Razor components into pages or
1537
1537
+ <base href="~/" />
1538
1538
```
1539
1539
1540
-
The `href` value (the *app base path*) in the preceding example assumes that the app resides at the root URL path (`/`). If the app is a sub-application, follow the guidance in the *App base path* section of the <xref:blazor/host-and-deploy/index#app-base-path> article.
1540
+
The `href` value (the *app base path*) in the preceding example assumes that the app resides at the root URL path (`/`). If the app is a sub-application, see <xref:blazor/host-and-deploy/app-base-path>.
1541
1541
1542
1542
* Add a `<script>` tag for the `blazor.server.js` script immediately before the `Scripts` render section.
1543
1543
@@ -1937,7 +1937,7 @@ To resolve the problem, use ***either*** of the following approaches:
1937
1937
*[Prerendering with JavaScript interop](xref:blazor/components/lifecycle#prerendering-with-javascript-interop)
1938
1938
*[Authentication and authorization: General aspects](xref:blazor/security/index#aspnet-core-blazor-authentication-and-authorization)
Copy file name to clipboardExpand all lines: aspnetcore/blazor/fundamentals/environments.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -151,7 +151,7 @@ In the following example for IIS, the custom header (`Blazor-Environment`) is ad
151
151
```
152
152
153
153
> [!NOTE]
154
-
> To use a custom `web.config` file for IIS that isn't overwritten when the app is published to the `publish` folder, see <xref:blazor/host-and-deploy/webassembly#use-a-custom-webconfig>.
154
+
> To use a custom `web.config` file for IIS that isn't overwritten when the app is published to the `publish` folder, see <xref:blazor/host-and-deploy/webassembly/iis#use-of-a-custom-webconfig>.
155
155
156
156
### Nginx
157
157
@@ -172,7 +172,7 @@ http {
172
172
For more information, see the following resources:
Copy file name to clipboardExpand all lines: aspnetcore/blazor/fundamentals/routing.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,7 @@ Components support multiple route templates using multiple [`@page` directives](
99
99
:::moniker-end
100
100
101
101
> [!IMPORTANT]
102
-
> For URLs to resolve correctly, the app must include a `<base>` tag ([location of `<head>` content](xref:blazor/project-structure#location-of-head-and-body-content)) with the app base path specified in the `href` attribute. For more information, see <xref:blazor/host-and-deploy/index#app-base-path>.
102
+
> For URLs to resolve correctly, the app must include a `<base>` tag ([location of `<head>` content](xref:blazor/project-structure#location-of-head-and-body-content)) with the app base path specified in the `href` attribute. For more information, see <xref:blazor/host-and-deploy/app-base-path>.
103
103
104
104
:::moniker range="< aspnetcore-6.0"
105
105
@@ -1818,6 +1818,6 @@ The typical configuration is to route all requests to a Razor page, which acts a
1818
1818
1819
1819
The route specified in the host file is called a *fallback route* because it operates with a low priority in route matching. The fallback route is used when other routes don't match. This allows the app to use other controllers and pages without interfering with component routing in the Blazor Server app.
1820
1820
1821
-
For information on configuring <xref:Microsoft.AspNetCore.Builder.RazorPagesEndpointRouteBuilderExtensions.MapFallbackToPage%2A> for non-root URL server hosting, see <xref:blazor/host-and-deploy/index#app-base-path>.
1821
+
For information on configuring <xref:Microsoft.AspNetCore.Builder.RazorPagesEndpointRouteBuilderExtensions.MapFallbackToPage%2A> for non-root URL server hosting, see <xref:blazor/host-and-deploy/app-base-path>.
> Blazor relies on <xref:Microsoft.AspNetCore.SignalR.HubOptions.MaximumParallelInvocationsPerClient%2A> set to 1, which is the default value. For more information, see [MaximumParallelInvocationsPerClient > 1 breaks file upload in Blazor Server mode (`dotnet/aspnetcore`#53951)](https://github.com/dotnet/aspnetcore/issues/53951).
299
299
300
-
For information on memory management, see <xref:blazor/host-and-deploy/server#memory-management>.
300
+
For information on memory management, see <xref:blazor/host-and-deploy/server/memory-management>.
301
301
302
302
## Blazor hub options
303
303
@@ -993,8 +993,8 @@ When changing the values of the server timeout (<xref:Microsoft.AspNetCore.Signa
0 commit comments