Remove Authentication
This page describes how to remove auth from a theme
Disable Authentication Temporary
....
const routes: Routes = [
{
path: '',
component: AdminComponent,
// canActivate: [AuthGuard], // Commenting this out temporarily to disable authentication
children: [
{
path: '',
redirectTo: '/auth/signinv2',
pathMatch: 'full'
},
....
]
...
}
...
]