Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
399 Bytes
import { provideHttpClient, withFetch } from '@angular/common/http'
import {
QueryClient,
provideTanStackQuery,
withDevtools,
} from '@tanstack/angular-query-experimental'
import type { ApplicationConfig } from '@angular/core'
export const appConfig: ApplicationConfig = {
providers: [
provideHttpClient(withFetch()),
provideTanStackQuery(new QueryClient(), withDevtools()),
],
}