- Updated videos.html to enhance readability and maintainability. - Refactored webpack.config.js for better organization and clarity. - Cleaned up TypeScript configuration files (tsconfig.app.json, tsconfig.json, tsconfig.spec.json) for consistency in formatting. - Adjusted docker-compose.yaml for improved formatting and readability.
21 lines
488 B
TypeScript
21 lines
488 B
TypeScript
import { Routes } from '@angular/router';
|
|
|
|
import { AppSideLoginComponent } from './side-login/side-login.component';
|
|
import { AppSideRegisterComponent } from './side-register/side-register.component';
|
|
|
|
export const AuthenticationRoutes: Routes = [
|
|
{
|
|
path: '',
|
|
children: [
|
|
{
|
|
path: 'login',
|
|
component: AppSideLoginComponent,
|
|
},
|
|
{
|
|
path: 'register',
|
|
component: AppSideRegisterComponent,
|
|
},
|
|
],
|
|
},
|
|
];
|