diff --git a/.yarn/install-state.gz b/.yarn/install-state.gz index 46a1797..850b3cb 100644 Binary files a/.yarn/install-state.gz and b/.yarn/install-state.gz differ diff --git a/src/App.tsx b/src/App.tsx index 1f35588..d1f1023 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -6,6 +6,7 @@ import { QueryClient, QueryCache, QueryClientProvider } from '@tanstack/react-qu import { APIResponseError } from 'endpoint-client'; import './style.css'; import ScrollToTop from './components/ScrollTop/ScrollTop'; +import { useEffect } from 'react'; const queryClient = new QueryClient({ queryCache: new QueryCache({ @@ -27,6 +28,11 @@ const queryClient = new QueryClient({ }); function App() { + /* 총학 홈페이지 접근 시 ssuketch로 리다이렉트 되도록 임시 설정 */ + useEffect(() => { + window.location.href = 'https://ssuketch60.cafe24.com/'; + }, []); + return (