All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 2s
16 lines
583 B
TypeScript
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 }
|
|
],
|
|
};
|