import { StrictMode } from 'react' import { createRoot } from 'react-dom/client' import App from './App.tsx' import './index.css' import 'react-grid-layout/css/styles.css' import 'react-resizable/css/styles.css' import 'xterm/css/xterm.css' import { loadMessagesForLocale, getInitialLocale } from './lib/i18n' import { logWebVitals } from './lib/webVitals' async function bootstrapApplication() { const rootElement = document.getElementById('root') if (!rootElement) throw new Error('Failed to find the root element') // CSRF token initialization is deferred to first mutating request // This eliminates network RTT from app startup path // See: ccw/frontend/src/lib/api.ts - fetchApi handles lazy token fetch const locale = await getInitialLocale() // Load only the active locale's messages (lazy load secondary on demand) const messages = await loadMessagesForLocale(locale) const root = createRoot(rootElement) root.render( ) // Initialize Web Vitals monitoring (LCP, FID, CLS) // Logs metrics to console in development; extend to analytics in production logWebVitals() } bootstrapApplication().catch((error) => { console.error('Failed to bootstrap application:', error) })