All checks were successful
Anonymous openbaar portal completing the walking skeleton (submit → projection → public visibility). closes #10
20 lines
625 B
TypeScript
20 lines
625 B
TypeScript
import { provideHttpClient } from '@angular/common/http';
|
|
import {
|
|
ApplicationConfig,
|
|
provideBrowserGlobalErrorListeners,
|
|
} from '@angular/core';
|
|
import { provideRouter } from '@angular/router';
|
|
import { appRoutes } from './app.routes';
|
|
|
|
/**
|
|
* The openbaar register is a public, anonymous read: no DigiD, no auth interceptor. The app is served
|
|
* same-origin as the BFF (nginx proxies /openbaar), so the api-client's relative calls stay same-origin.
|
|
*/
|
|
export const appConfig: ApplicationConfig = {
|
|
providers: [
|
|
provideBrowserGlobalErrorListeners(),
|
|
provideRouter(appRoutes),
|
|
provideHttpClient(),
|
|
],
|
|
};
|