Top Donators / Total

This commit is contained in:
2023-11-18 14:30:34 +01:00
parent ed60cfd72a
commit b8117e07c5
17 changed files with 201 additions and 22 deletions

View File

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