From 63ce76fad137f9a7adc8a57faa115550dd6218ac Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Fri, 26 Jul 2024 12:46:13 -0400 Subject: [PATCH] Add subdomain+subapp hosting section (#33172) --- aspnetcore/blazor/host-and-deploy/webassembly.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/aspnetcore/blazor/host-and-deploy/webassembly.md b/aspnetcore/blazor/host-and-deploy/webassembly.md index e49f096f05..394441236b 100644 --- a/aspnetcore/blazor/host-and-deploy/webassembly.md +++ b/aspnetcore/blazor/host-and-deploy/webassembly.md @@ -35,6 +35,12 @@ The following deployment strategies are supported: :::moniker-end +## Subdomain and IIS sub-application hosting + +Subdomain hosting doesn't require special configuration of the app. You ***don't*** need to configure the app base path (the `` tag in `wwwroot/index.html`) to host the app at a subdomain. + +IIS sub-application hosting ***does*** require you to set the app base path. For more information and cross-links to further guidance on IIS sub-application hosting, see . + ## Decrease maximum heap size for some mobile device browsers :::moniker range=">= aspnetcore-8.0"