Hi,
Please check this document link https://docs.abp.io/en/commercial/latest/themes/lepton-x/blazor?UI=BlazorServer#main-header
Thank you.
Hi
Have you added any controller with same path?
Hello,
could you please try to add below code in app.component.ts
file of angular application
export class AppComponent {
constructor(private authService: AuthService) {
if (!this.authService.isAuthenticated) {
this.authService.navigateToLogin();
}
}
}