# Remove Authentication

​This section explains how to bypass the login page and go directly to the dashboard page.

1. &#x20;Update route at: **src/app/app-routing.module.ts**

<pre class="language-typescript" data-title="app-routing.module.ts"><code class="lang-typescript">
// angular import
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';

// project import
import { AdminComponent } from './demo/layout/admin';
import { EmptyComponent } from './demo/layout/empty/empty.component';
import { GuestComponent } from './demo/layout/front/guest.component';
<strong>// import { AuthGuardChild } from './@theme/helpers/auth.guard';
</strong>
 {
    path: '',
    component: AdminComponent,
    // canActivateChild: [AuthGuardChild],,  &#x3C;!-- this part remove -->
    children: []
 }
</code></pre>
