Are there any way I can force only browser rendering of particular path for Angular 5 universal app? I have following routes in app.module.shared.ts
@NgModule({
declarations: [...],
imports: [
......
RouterModule.forRoot([
{ path: '', redirectTo: 'home', pathMatch: 'full' },
{ path: 'home', component: HomeComponent },
{ path: 'auth-callback', component: AuthCallbackComponent},
{ path: '**', redirectTo: 'home' }
]
)
],
providers: []
})
And I want mysite.com/auth-callback be only render in browser, not on server-side. Thanks for any help, failed to find any helping info.