I am trying to post the link to my portfolio onto linkedin and it always shows up with "Web site created using react app" as the description, which definitely doesn’t make it look professional. It is deployed on my domain but is there any way I can get rid of all the create-react-app default stuff on my domain link?
You need to change the index.htm file in the public folder the title and meta tags will contain this default title.
change the description and the title from your index.html file in the public folder then Rebuild your app
Hi I’ve recently encountered this tonight.
You’ll need to add these meta tags into the header of your index.html
Also the image size should be minimum 1200×627 (as per the linkedin documentation)
If you’re still having issues with LinkedIn recognising the new headers insert the url again but with a random parameter at the end of the url.
So if your site url is:
https://www.example.com
Try adding the link again with the empty parameter:
https://www.example.com?1
This should force linkedin to pull the new head data.
Hope that helps.