(1) polifills.ts 를 열어서 2줄 주석 해제
import 'classlist.js'; // Run `npm install --save classlist.js`.
import 'web-animations-js'; // Run `npm install --save web-animations-js`.
(2) 설치
npm install --save classlist.js
npm install --save web-animations-js
(3) .browserslistrc 를 열어서 1줄 삭제후 아래 내용으로 변경
(기존)
not IE 11 # Angular supports IE 11 only as an opt-in. To opt-in, remove the 'not' prefix on this line.
(변경후)
IE 9-11 # For IE 9-11 support, remove 'not'.
(4) tsconfig.json 에서 1줄 수정
(기존)
"target" : "es2015"
(변경후)
"target" : "es5"
끝. IE11 에서 잘된다.
참조 : dev.to/getamano/angular-8-x-9-x-internet-explorer-not-working-quick-solution-3ha7
'AA (Application Architecture)' 카테고리의 다른 글
| 이클립스 IDE 에서 Project Explorer 로 없어진 Navigator 재현하기 (1) | 2025.05.25 |
|---|---|
| Trac 1.2.2 install 설치방법 정리 및 관리자 로그인 (0) | 2023.03.16 |
| Apache 2.4 - Tomcat Connectors 1.2.48 - workers.properties (0) | 2023.02.23 |
| WAS 종류별 스펙 정리 (현시점 최종 버전) (0) | 2023.02.19 |