몇 시간 전에 Ionic 5가 발표 되었고 (2020 년 2 월 12 일) 작은 생산 앱 중 하나를 Angular 9와 함께 Ionic 5로 업그레이드했습니다.
# To update to Ionic 5
npm install @ionic/angular@latest @ionic/angular-toolkit@latest --save-exact --save
# To update to Angular 9
ng update @angular/core @angular/cli
그러나 내가 할 때 ionic serve
벨로 오류가 발생하기 시작했습니다.
Error: Angular JIT compilation failed: '@angular/compiler' not loaded!
- JIT compilation is discouraged for production use-cases! Consider AOT mode instead.
- Did you bootstrap using '@angular/platform-browser-dynamic' or '@angular/platform-server'?
- Alternatively provide the compiler with 'import "@angular/compiler";' before bootstrapping.
at getCompilerFacade (core.js:610)
at Function.get (core.js:16065)
at getInjectableDef (core.js:362)
at injectableDefOrInjectorDefFactory (core.js:16816)
몇 가지 Angular GitHub 문제가 발생했습니다.
그들은 포함하는 말 import '@angular/compiler';
에 main.ts
파일하지만 (나는 최근에 업데이트) 내 다른 각도 9 응용 프로그램 중 하나를 일치 할 때, 나는 거기 이러한 구성을 볼 수 없습니다.
Angular 9는 Ionic 5와 호환되지 않습니까?