2025-06-15 12:35:47 -05:00
|
|
|
import { createRoot } from 'react-dom/client';
|
2025-04-16 21:43:54 -05:00
|
|
|
|
2025-06-15 12:35:47 -05:00
|
|
|
// Import polyfills first
|
|
|
|
import './lib/polyfills.ts';
|
|
|
|
|
2025-07-17 17:18:58 +00:00
|
|
|
import { ErrorBoundary } from '@/components/ErrorBoundary';
|
2025-06-15 12:35:47 -05:00
|
|
|
import App from './App.tsx';
|
|
|
|
import './index.css';
|
2025-04-16 21:43:54 -05:00
|
|
|
|
2025-06-02 10:44:23 -05:00
|
|
|
// FIXME: a custom font should be used. Eg:
|
2025-06-06 14:27:19 -05:00
|
|
|
// import '@fontsource-variable/<font-name>';
|
2025-06-02 10:13:20 -05:00
|
|
|
|
2025-07-17 17:18:58 +00:00
|
|
|
createRoot(document.getElementById("root")!).render(
|
|
|
|
<ErrorBoundary>
|
|
|
|
<App />
|
|
|
|
</ErrorBoundary>
|
|
|
|
);
|