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