diff --git a/public/index.html b/public/index.html index 7711b8ba..c410e784 100644 --- a/public/index.html +++ b/public/index.html @@ -1,19 +1,39 @@ - - - - - - 사단법인 멋쟁이사자처럼 - + + + + + 사단법인 멋쟁이사자처럼 + + +
+ diff --git a/src/index.tsx b/src/index.tsx index afb000f4..8d641b30 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -8,7 +8,6 @@ import router from './Router'; import './styles/font.css'; import { ReactQueryDevtools } from '@tanstack/react-query-devtools'; import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; -import ReactGA from 'react-ga'; // stale time 10분으로 설정 const queryClient = new QueryClient({ @@ -21,14 +20,6 @@ const queryClient = new QueryClient({ }, }); -//Google Analytics -// const gaTrackingId = process.env.REACT_APP_GOOGLE_ANALYTICS_TRACKING_ID; // 환경 변수에 저장된 추적ID 가져오기 - -// if (gaTrackingId) { -// ReactGA.initialize(gaTrackingId, { debug: true }); -// ReactGA.pageview(window.location.pathname); -// } - const root = ReactDOM.createRoot( document.getElementById('root') as HTMLElement, );