Blazor RCL에 라우팅 설정은 AdditionalAssemblies 속성 사용 필수
Blazor RCL에 라우팅 설정은 AdditionalAssemblies 속성 사용 필수
App.razor의 Router에 AdditionalAssemblies 속성 추가
<CascadingAuthenticationState>
<Router AppAssembly="@typeof(Program).Assembly" PreferExactMatches="@true">
<Found Context="routeData">
<AuthorizeRouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
</Found>
<NotFound>
<LayoutView Layout="@typeof(MainLayout)">
<p>Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>
</CascadingAuthenticationState>
Comments
Comments are closed