Files
itc.webengineering/demo/src/app/app.config.ts

12 lines
313 B
TypeScript
Raw Normal View History

2025-12-06 11:38:19 +01:00
import { ApplicationConfig, provideBrowserGlobalErrorListeners } from '@angular/core';
2025-12-06 08:46:55 +01:00
import { provideRouter } from '@angular/router';
import { routes } from './app.routes';
export const appConfig: ApplicationConfig = {
2025-12-06 11:38:19 +01:00
providers: [
provideBrowserGlobalErrorListeners(),
2025-12-06 12:14:57 +01:00
provideRouter(routes)
2025-12-06 11:38:19 +01:00
]
2025-12-06 08:46:55 +01:00
};