Angular keeps warning me about IE 11:
Warning: Support was requested for IE 11 in the project's browserslist configuration. IE 11 support is deprecated since Angular v12.
I came across this answer:
Angular 12 warns about requested IE 11 support. Why?
I changed my .browserslistrc file as recommended, and it now looks like this:
last 1 Chrome version
last 1 Firefox version
last 2 Edge major versions
last 2 Safari major versions
last 2 iOS major versions
Firefox ESR
not IE 11
But I still get the warning.
I also have an issue with aot
(Maximum call stack size error) so I set aot
to false. The error disappeared. I would expect the error to reappear when setting aot
back to true, but it didn't. Then I used another build config where aot
is true, and the error is back.
Is Angular saving config in some kind of cache that I need to purge between builds? Because it seems that the changes I make in config files, does not always take effect.