vite + typescript로 프로젝트를 진행 중 build 후 cPanel에 업로드를 진행했는데 react-router-dom이 동작을 하지않는 오류가 있었습니다.
해결방법
-cpanel root 폴더
.htaccess 파일 생성
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /index.html [L]
</IfModule>