fix(routing): InteractiveServer routing, WASM interactivity declared at layout level

Routes moves to InteractiveServer so the server router always sees all
assemblies (including AuthBlocksWeb). MainLayout declares
@rendermode InteractiveWebAssembly — the single source of WASM
interactivity for all public pages. CmsLayout in DeepDrftCms provides
a server-rendered admin shell without the audio dock. Assembly-level
_Imports.razor files set the default layout for each group; no per-page
rendermode declarations needed. Routes.razor moves to the server host
(its correct home) carrying the full AdditionalAssemblies list.
This commit is contained in:
Daniel Harvey
2026-05-18 23:31:10 -04:00
parent 8e7347f498
commit d31a08bd15
8 changed files with 99 additions and 28 deletions
+2 -1
View File
@@ -10,4 +10,5 @@
@using MudBlazor
@using MudBlazor.Services
@using MudBlazor.ThemeManager
@using DeepDrftWeb.Client.Common
@using DeepDrftWeb.Client.Common
@layout DeepDrftWeb.Client.Layout.MainLayout