| import { | |
| ApplicationConfig, | |
| provideBrowserGlobalErrorListeners, | |
| provideZonelessChangeDetection, | |
| } from '@angular/core' | |
| import { | |
| provideTanStackQuery, | |
| QueryClient, | |
| } from '@tanstack/angular-query-experimental' | |
| export const appConfig: ApplicationConfig = { | |
| providers: [ | |
| provideBrowserGlobalErrorListeners(), | |
| provideZonelessChangeDetection(), | |
| provideTanStackQuery(new QueryClient()), | |
| ], | |
| } | |