Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
370 Bytes
import { browser } from '$app/environment'
import { QueryClient } from '@tanstack/svelte-query'
import type { LayoutLoad } from './$types'
export const load: LayoutLoad = async () => {
const queryClient = new QueryClient({
defaultOptions: {
queries: {
enabled: browser,
staleTime: 60 * 1000,
},
},
})
return { queryClient }
}