diff --git a/apps/web/src/app/layout.tsx b/apps/web/src/app/layout.tsx index 9b2100b..d6caf24 100644 --- a/apps/web/src/app/layout.tsx +++ b/apps/web/src/app/layout.tsx @@ -43,7 +43,8 @@ export default function RootLayout({ ); }; - // 현재 호스트가 모바일용 도메인이 아니고 모바일 기기일 경우 리다이렉트 + console.log('isMobile 테스트', isMobile(), navigator.userAgent); + if (isMobile() && window.location.hostname === 'rankit.run') { const newUrl = `https://m.rankit.run${window.location.pathname}`; window.location.replace(newUrl);