Replies: 1 comment
-
라고 하는데 현재 아래의 코드에서 navigator.appName === 'Netscape' 이 부분을 삭제하는 것이 좋아보이네요! 이러한 이슈가 있는지 몰랐는데 알려주셔서 감사합니다 👍👍👍 import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
import { worker } from './mocks/worker';
if (process.env.NODE_ENV === 'development') {
worker.start();
}
if (
(navigator.appName === 'Netscape' && navigator.userAgent.search('Trident') !== -1) ||
navigator.userAgent.toLowerCase().indexOf('msie') !== -1
) {
alert('이 브라우저는 지원 중단 되었습니다. 최적의 환경을 위해 브라우저를 업데이트 하세요.');
}
const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement);
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
); |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
어려운 코드를 살펴보던 중 navigator.appName를 검색했다가 해당 기능이 권장되지 않음을 확인했습니다.
이에 따라 기존 코드 수정이 필요할 것 같아 의견을 여쭈어봅니다.
방식을 논의한 후 이슈로 파는 것이 좋을 것 같아 디스커션에 먼저 묻습니다!
공식문서
Beta Was this translation helpful? Give feedback.
All reactions