From af513034efa953132472814e8af3f09ff282e56b Mon Sep 17 00:00:00 2001 From: Theis Gaedigk Date: Sun, 26 Oct 2025 15:40:23 +0100 Subject: [PATCH] chore: add logging for i18n variable to prevent unused variable tree shaking --- FrontendV2/src/main.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/FrontendV2/src/main.tsx b/FrontendV2/src/main.tsx index a2ca89e..b9f5e03 100644 --- a/FrontendV2/src/main.tsx +++ b/FrontendV2/src/main.tsx @@ -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(