import { QueryClientProvider } from '@tanstack/react-query' import { ReactQueryDevtools } from '@tanstack/react-query-devtools' import { RouterProvider } from '@tanstack/react-router' import { StrictMode } from 'react' import { createRoot } from 'react-dom/client' import { APP_ROOT_ELEMENT_ID } from '@/constants' import '@/i18n' import { initializeAuthSession } from '@/lib/auth/auth-session' import { queryClient } from '@/lib/query/query-client' import { router } from '@/router' import './style/index.css' const rootElement = document.getElementById(APP_ROOT_ELEMENT_ID) const shouldShowQueryDevtools = import.meta.env.VITE_APP_ENV === 'development' && import.meta.env.VITE_ENABLE_QUERY_DEVTOOLS === 'true' if (!rootElement) { throw new Error('Root element not found') } void initializeAuthSession() createRoot(rootElement).render( {shouldShowQueryDevtools && } , )