Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
413 Bytes
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()),
],
}