// Ensure window.fetch has both a getter and setter to prevent third-party polyfills from throwing try { if (typeof window !== 'undefined' && window.fetch) { let currentFetch = window.fetch; Object.defineProperty(window, 'fetch', { get: () => currentFetch, set: (fn) => { currentFetch = fn; }, configurable: true, enumerable: true, }); } } catch (e) { // ignore } import {StrictMode} from 'react'; import {createRoot} from 'react-dom/client'; import App from './App.tsx'; import './index.css'; createRoot(document.getElementById('root')!).render( , );