All checks were successful
CI / Get Changed Files (pull_request) Successful in 7s
CI / Backend Tests (pull_request) Has been skipped
CI / Checkstyle Main (pull_request) Has been skipped
Pull Request Labeler / labeler (pull_request_target) Successful in 7s
CI / Docker backend validation (pull_request) Has been skipped
Label PRs based on size / Check PR size (pull_request) Successful in 13s
Claude PR Review / claude-code (pull_request) Successful in 26s
CI / oxlint (pull_request) Successful in 25s
CI / prettier (pull_request) Successful in 30s
CI / eslint (pull_request) Successful in 34s
CI / Docker frontend validation (pull_request) Successful in 39s
CI / test-build (pull_request) Successful in 47s
18 lines
723 B
TypeScript
18 lines
723 B
TypeScript
import { ApplicationConfig, provideZonelessChangeDetection } from '@angular/core';
|
|
import { provideRouter } from '@angular/router';
|
|
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
|
|
|
|
import { routes } from './app.routes';
|
|
import { provideHttpClient, withInterceptors } from '@angular/common/http';
|
|
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
|
|
import { httpInterceptor } from '@shared/interceptor/http.interceptor';
|
|
|
|
export const appConfig: ApplicationConfig = {
|
|
providers: [
|
|
provideRouter(routes),
|
|
FontAwesomeModule,
|
|
provideHttpClient(withInterceptors([httpInterceptor])),
|
|
provideZonelessChangeDetection(),
|
|
provideAnimationsAsync(),
|
|
],
|
|
};
|