13 lines
383 B
TypeScript
13 lines
383 B
TypeScript
|
import { ApplicationConfig, provideBrowserGlobalErrorListeners, provideZonelessChangeDetection } from '@angular/core';
|
||
|
import { provideRouter } from '@angular/router';
|
||
|
|
||
|
import { routes } from './app.routes';
|
||
|
|
||
|
export const appConfig: ApplicationConfig = {
|
||
|
providers: [
|
||
|
provideBrowserGlobalErrorListeners(),
|
||
|
provideZonelessChangeDetection(),
|
||
|
provideRouter(routes)
|
||
|
]
|
||
|
};
|