test(portal-beheer): beheer app scaffold + catalogus viewer specs (refs #130)

This commit is contained in:
not
2026-07-24 10:55:58 +02:00
parent df16659f94
commit b412721938
22 changed files with 521 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { App } from './app/app';
import { appConfig, type RuntimeConfig } from './app/app.config';
// Load environment config before bootstrap so the OIDC authority is set per environment
// (dev: localhost; compose: keycloak:8080) from a single build — 12-factor (S-08d).
fetch('config.json')
.then((response) => response.json() as Promise<RuntimeConfig>)
.then((config) => bootstrapApplication(App, appConfig(config)))
.catch((err) => console.error(err));