60765469aa
JS-Fehler in einer View fuehrten zum weissen Screen ohne Meldung; jetzt Fehleranzeige mit Neu-laden-Knopf am App-Root (GraphView behaelt seine eigene Boundary). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
28 lines
736 B
TypeScript
28 lines
736 B
TypeScript
import React from "react"
|
|
import ReactDOM from "react-dom/client"
|
|
import { QueryClient, QueryClientProvider } from "@tanstack/react-query"
|
|
import App from "./App"
|
|
import { AppErrorBoundary } from "./components/AppErrorBoundary"
|
|
import "./index.css"
|
|
|
|
// Zentraler Daten-Layer: Caching, Dedup, Retry, Polling pro Query-Hook.
|
|
const queryClient = new QueryClient({
|
|
defaultOptions: {
|
|
queries: {
|
|
retry: 1,
|
|
refetchOnWindowFocus: false,
|
|
staleTime: 5_000,
|
|
},
|
|
},
|
|
})
|
|
|
|
ReactDOM.createRoot(document.getElementById("root")!).render(
|
|
<React.StrictMode>
|
|
<AppErrorBoundary>
|
|
<QueryClientProvider client={queryClient}>
|
|
<App />
|
|
</QueryClientProvider>
|
|
</AppErrorBoundary>
|
|
</React.StrictMode>,
|
|
)
|