How to inject the <meta /> at the top of the <head /> in react-helmet v6 ?
Hi, I want to inject my social networks meta at the top of the head (og:title, ...), so far it keep being injected at the end.
How can I configure react-helmet to inject at the top?
Thanks a lot !
I was able to accomplish this by replacing "appendChild" with "prepend" within the Helmet.js file.
headElement.prepend(newChild)
Related: https://github.com/nfl/react-helmet/issues/514
I was able to accomplish this by replacing "appendChild" with "prepend" within the Helmet.js file.
headElement.prepend(newChild)
I did this like in the image but no luck :(

Update: oops! I was modifying Helmet.js in lib folder. I had to modify it in es folder.