Files
GMW/frontend/src/main.tsx
T

25 lines
726 B
TypeScript
Raw Normal View History

2026-05-14 20:24:41 +07:00
import React from "react";
import ReactDOM from "react-dom/client";
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
2026-05-14 20:24:41 +07:00
import App from "./App";
import "./styles.css";
const queryClient = new QueryClient({
defaultOptions: {
queries: {
staleTime: 30_000, // data stays fresh for 30s — no refetch within this window
gcTime: 5 * 60_000, // keep unused data in cache for 5 minutes
refetchOnWindowFocus: false, // avoid spamming the API on tab switches
retry: 2,
},
},
});
2026-05-14 20:24:41 +07:00
ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<QueryClientProvider client={queryClient}>
<App />
</QueryClientProvider>
2026-05-14 20:24:41 +07:00
</React.StrictMode>
);