Created: translate pipe and move blocks to component

This commit is contained in:
2024-06-03 00:40:57 +03:00
parent 6ddba3b5ff
commit bfb2922a8b
19 changed files with 300 additions and 104 deletions

View File

@@ -1,8 +1,9 @@
import { provideHttpClient } from '@angular/common/http';
import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
import { ApplicationConfig } from '@angular/core';
import { provideRouter } from '@angular/router';
import { appRoutes } from './app.routes';
import { TranslateService } from './services/translate.service';
export const appConfig: ApplicationConfig = {
providers: [provideHttpClient(), provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(appRoutes)],
providers: [provideHttpClient(), provideRouter(appRoutes), TranslateService],
};