如何从链接中删除使用Create-Reaction-app创建的"?

我正在尝试将我的投资组合的链接发布到LinkedIn上,但它总是以使用Reaction应用程序创建的网站作为描述显示,这肯定不会让它看起来很专业。它部署在我的域上,但我有什么方法可以删除我的域链接上的所有创建-反应-应用程序默认内容吗?


解决方案

更改公用文件夹中index.html文件的描述和标题,然后重新生成应用程序

  <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>

相关文章