VisualStudio > React > react-scripts
8196 단어 IE11ReactVisualStudio2019
React & IE 11 & react-scripts ver2에서 오류가 발생한 이벤트 처리 - Qiita
이전 단락
Visual Studio 템플릿에서 만든 프로젝트
create-react-app의react-scripts는 1.1계입니다.
"dependencies": {
"react": "^16.0.0",
"react-scripts": "^1.1.5",
},
IE 11은 2018.12.7의 최신 2.1.1로 올렸을 때 오류가 있었다. "dependencies": {
"react": "16.6.3",
"react-scripts": "2.1.1",
},
Error
Fecth 오류
까닭
Last call for Create React App v2 · Issue #5103 · facebook/create-react-app
We have dropped default support for Internet Explorer 9, 10, and 11.
Internet Explorer 9, 10 및 11에 대한 기존 지원이 제거되었습니다.
react-scriptt2의 이유는 IE의 지원이 취소되었기 때문입니다.
대책
그렇게 말하지만 전혀 사용할 수 없는 것은 아니며 보트도 준비했다.
(언제까지 쓸 수 있을지 모르겠다.)
If you still need to support these browsers, follow the instructions below.
이러한 브라우저를 지원하려면 다음 절차를 따르십시오
1, install react-app-polyfill:
$ npm install react-app-polyfill --save
$ # or
$ yarn add react-app-polyfill
2, src/index.js의 첫 줄에 추가첫 번째 행에 추가
src/index.js
import 'react-app-polyfill/ie11'; // For IE 11 support
package.다음은 제이슨입니다.package.json
{
"name": "WebApplication1",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "^4.1.3",
"jquery": "3.3.1",
"react": "16.6.3",
"react-app-polyfill": "^0.1.3",
"react-dom": "16.6.3",
"react-grid-layout": "0.16.6",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "4.3.1",
"react-scripts": "2.1.1",
"reactstrap": "6.5.0"
},
"eslintConfig": {
"extends": "react-app"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
}
}
결실
IE11도 무사히 일을 시작했다.
Reference
이 문제에 관하여(VisualStudio > React > react-scripts), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/sugasaki/items/4621c5f0f991c2c1995f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)