2026-05-14 20:24:41 +07:00
|
|
|
import React from "react";
|
|
|
|
|
import ReactDOM from "react-dom/client";
|
2026-05-30 20:40:33 +07:00
|
|
|
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
|
2026-05-14 20:24:41 +07:00
|
|
|
import App from "./App";
|
|
|
|
|
import "./styles.css";
|
|
|
|
|
|
2026-05-30 20:40:33 +07:00
|
|
|
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>
|
2026-05-30 20:40:33 +07:00
|
|
|
<QueryClientProvider client={queryClient}>
|
|
|
|
|
<App />
|
|
|
|
|
</QueryClientProvider>
|
2026-05-14 20:24:41 +07:00
|
|
|
</React.StrictMode>
|
|
|
|
|
);
|