blob: 59ef4ce55ceb4e6f6cc254b749e4142cae43aff4 (
plain) (
tree)
|
|
import { RouterConfig } from '@angular/router';
import { LoginRoutes } from './login';
import { VideosRoutes } from './videos';
export const routes: RouterConfig = [
{
path: '',
redirectTo: '/videos/list',
pathMatch: 'full'
},
...LoginRoutes,
...VideosRoutes
];
|