In the process of developing a React app with react router, I encountered the need for SEO optimization and adding meta tags to each page. Despite trying out react helmet, it seems that the Yandex micromarkup validator (located at https://webmaster.yandex.ru/tools/microtest/) is unable to recognize these dynamic meta tags, only recognizing those set in index.html. However, when accessing the page through a browser, all the specified meta tags are indeed loaded.
Is there a solution to this issue without having to resort to ssr? Are these dynamic meta tags sufficient for Google's search engine indexing purposes, or should further action be taken?
I am hopeful that there might be an alternative library available to manage meta tags without involving ssr.