This commit is contained in:
Антон
2024-08-14 04:41:10 +03:00
parent 2c3b41e732
commit 582cb35c50
4 changed files with 274 additions and 7 deletions

View File

@ -2,7 +2,8 @@ import { ApplicationConfig } from '@angular/core';
import { provideRouter } from '@angular/router';
import { routes } from './app.routes';
import { provideStore } from '@ngrx/store';
export const appConfig: ApplicationConfig = {
providers: [provideRouter(routes)],
providers: [provideRouter(routes), provideStore()],
};