summaryrefslogtreecommitdiff
path: root/apps/web/lib/query-client.ts
blob: 82be2dfa4e8050ea86b6251fcfbfb6963ece90e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import { QueryClient } from "@tanstack/react-query"

export function createQueryClient() {
  return new QueryClient({
    defaultOptions: {
      queries: {
        staleTime: 60_000,
        refetchOnWindowFocus: false,
      },
    },
  })
}