All checks were successful
Anonymous openbaar portal completing the walking skeleton (submit → projection → public visibility). closes #10
7 lines
311 B
TypeScript
7 lines
311 B
TypeScript
import { bootstrapApplication } from '@angular/platform-browser';
|
|
import { App } from './app/app';
|
|
import { appConfig } from './app/app.config';
|
|
|
|
// The openbaar register is anonymous (no DigiD, no runtime config) — bootstrap directly.
|
|
bootstrapApplication(App, appConfig).catch((err) => console.error(err));
|