fix(public): move Routes.razor to client assembly so InteractiveAuto can resolve it in WASM

This commit is contained in:
Daniel Harvey
2026-05-21 08:56:01 -04:00
parent daa1530292
commit c436e564be
2 changed files with 3 additions and 3 deletions
+10
View File
@@ -0,0 +1,10 @@
<Router AppAssembly="typeof(Routes).Assembly">
<Found Context="routeData">
<RouteView RouteData="routeData" DefaultLayout="typeof(DeepDrftPublic.Client.Layout.MainLayout)" />
<FocusOnNavigate RouteData="routeData" Selector="h1" />
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<p role="alert">Sorry, there's nothing at this address.</p>
</NotFound>
</Router>