Some checks failed
Deploy to Test Environment / deploy-to-test (push) Failing after 1m10s
32 lines
882 B
TypeScript
32 lines
882 B
TypeScript
// src/index.tsx
|
|
/**
|
|
* IMPORTANT: Sentry initialization MUST happen before any other imports
|
|
* to ensure all errors are captured, including those in imported modules.
|
|
* See ADR-015: Application Performance Monitoring and Error Tracking.
|
|
*/
|
|
import { initSentry } from './services/sentry.client';
|
|
initSentry();
|
|
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom/client';
|
|
import App from './App';
|
|
import { BrowserRouter } from 'react-router-dom';
|
|
import { AppProviders } from './providers/AppProviders';
|
|
import './index.css';
|
|
|
|
const rootElement = document.getElementById('root');
|
|
if (!rootElement) {
|
|
throw new Error('Could not find root element to mount to');
|
|
}
|
|
|
|
const root = ReactDOM.createRoot(rootElement);
|
|
root.render(
|
|
<React.StrictMode>
|
|
<BrowserRouter>
|
|
<AppProviders>
|
|
<App />
|
|
</AppProviders>
|
|
</BrowserRouter>
|
|
</React.StrictMode>,
|
|
);
|