Seed: Angular workspace (web/) for frontend tasks

ng new defaults, Angular 22.1, vitest unit-test builder — npm test runs
once and green under CI.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Honegger, Florian
2026-08-05 01:02:32 +02:00
parent 3f086f9dca
commit 605a952f7a
23 changed files with 8572 additions and 0 deletions

11
web/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)
]
};