feature/IO-3499-React-19 -Checkpoint

This commit is contained in:
Dave
2026-01-27 20:40:04 -05:00
parent 02feba2804
commit 4dfda4b371
11 changed files with 148 additions and 112 deletions

View File

@@ -82,13 +82,14 @@ const rootEl = document.getElementById("root");
if (!rootEl) throw new Error('Missing root element: <div id="root" />');
const appTree = import.meta.env.DEV ? (
<StrictMode>
const appTree =
import.meta.env.DEV && import.meta.env?.VITE_DISABLE_STRICT_MODE !== "true" ? (
<StrictMode>
<App />
</StrictMode>
) : (
<App />
</StrictMode>
) : (
<App />
);
);
ReactDOM.createRoot(rootEl).render(appTree);