chore: add logging for i18n variable to prevent unused variable tree shaking

This commit is contained in:
2025-10-26 15:40:23 +01:00
parent 3358c8f669
commit af513034ef

View File

@@ -5,6 +5,10 @@ import "./index.css";
import App from "./App.tsx";
import i18n from "./utils/i18n"; // import i18n configuration DO NOT REMOVE
// Prevent unused variable tree shaking
let i18nUnused = i18n;
console.log(i18nUnused);
createRoot(document.getElementById("root")!).render(
<StrictMode>
<Provider>