Angular project generation

This commit is contained in:
Marta Borgia Leiva 2026-02-09 18:23:19 +01:00
parent f3f4ef244a
commit 9ab0505ed4
Signed by: a-mayb3
GPG key ID: 293AAC4FED165CE3
23 changed files with 9416 additions and 23 deletions

11
src/app/app.config.ts Normal file
View file

@ -0,0 +1,11 @@
import { ApplicationConfig, provideBrowserGlobalErrorListeners } from '@angular/core';
import { provideRouter } from '@angular/router';
import { routes } from './app.routes';
export const appConfig: ApplicationConfig = {
providers: [
provideBrowserGlobalErrorListeners(),
provideRouter(routes)
]
};