Reputation: 52
I am getting the following error when running Angular 7 code on stackblitz from github repo:
Error in /turbo_modules/@angular/[email protected]/bundles/compiler.umd.js (1098:21)
Upvotes: 2
Views: 375
Reputation: 13963
I was having the same problem with this stackblitz: https://stackblitz.com/github/Kirkify/angular-rerendering-problem
Just add import 'core-js/es7/reflect';
to the polyfills.ts
file to fix it.
Hope this helps.
Upvotes: 3