If this question seems too broad or opinion-based, please let me know and I'll work on refining it.
I am currently exploring the integration of browser compatibility checks and notifications in an Angular application. Utilizing Modernizr
has been really helpful so far. The client is not interested in using many polyfills, but instead wants to display a notification prompting users with outdated browsers to upgrade to a more modern one.
I'm trying to determine the best angular component to use for this task. Ideally, I would like to perform this check as early as possible in the page load/compile process. However, my knowledge of Angular is still developing and I want to make sure I choose the right approach. Additionally, I aim to structure my Angular app in a way that will be easily understandable for future developers, avoiding any messy code that may confuse them...