Is there a way to turn off scroll restoration on a specific page? Let's say I have the following routes in my app-routing.module.ts file...
const appRoutes: Routes = [{ path: 'home', component: myComponent}, { path: 'about', component: myComponent}, ]
and my imports are set up like this...
@NgModule({imports: [RouterModule.forRoot(appRoutes, {
scrollPositionRestoration: 'enabled'
})]
So how can I disable scroll restoration for the 'about' route?