mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-11 05:13:02 -05:00
7 lines
230 B
TypeScript
7 lines
230 B
TypeScript
import { ApplicationConfig } from '@angular/core';
|
|
import { provideRouter } from '@angular/router';
|
|
import { APP_ROUTES } from './routes';
|
|
export const appConfig: ApplicationConfig = {
|
|
providers: [provideRouter(APP_ROUTES)],
|
|
};
|