Gal Podlipnik 459deb255d
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 2s
fixes and api setup
2025-06-03 01:46:33 +02:00

16 lines
583 B
TypeScript

import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
import { provideRouter } from '@angular/router';
import { appRoutes } from './app.routes';
import { provideHttpClient } from '@angular/common/http';
import { ENVIRONMENT } from '@frontend/shared/environment';
import { environment } from '../environments/environment';
export const appConfig: ApplicationConfig = {
providers: [
provideZoneChangeDetection({ eventCoalescing: true }),
provideHttpClient(),
provideRouter(appRoutes),
{ provide: ENVIRONMENT, useValue: environment }
],
};