import { StrictMode } from "react"; import { createRoot } from "react-dom/client"; import "./index.css"; import "./lib/i18n/index.js"; // initialize i18next before the app renders import { App } from "./App.js"; const rootEl = document.getElementById("root"); if (!rootEl) throw new Error("root element not found"); createRoot(rootEl).render( , );