I would like to know What is the minimum version of chrome that angular 8 supports and if there is a way of telling the user that he needs to update his chrome. my angular app doesn't work on some computers and i think this is the reason.
Asked
Active
Viewed 550 times
1 Answers
0
Here you will find Angular's official supported browsers page
Angular 8 introduced differential loading which allows for loading of different javascript files es2015 vs es5 javascript for older browsers. meaning the correct versions get loaded depending on the browser. you have the option of adding additional polyfills to you build to target specific browsers.
as to informing the user that the browser they use is too old, this is a something that's been around for decades and you can find code to do that. here is an example
PS: It might help if you provided the specifics of the error your seeing in case it isnt' a browser issue.
hope this helps.

Edward
- 1,076
- 1
- 12
- 24
-
Thank you very much for your answer. But the article shows the maximum chrome version nit the minimum. And there are no errors in the console – Yuval Jun 09 '20 at 23:26
-
I came here with the same question - Is there an official minimum version? ie. I have a user on Chrome 67 - Should I expect to resolve all his browser problems? – MortimerCat Aug 09 '21 at 08:02