Skip to content
Advertisement

How can I change “created using create-react-app” in search results?

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?

Advertisement

Answer

change the description and the title from your index.html file in the public folder then Rebuild your app

  <head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
  name="description"
  content="Web site created using create-react-app"
/>
<link href="https://fonts.googleapis.com/css?family=Muli:300,400,600,700" rel="stylesheet">

<title>React App</title>
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement