reactjs 即使在移除后,React图标仍会显示

hfyxw5xn  于 2022-11-22  发布在  React
关注(0)|答案(2)|浏览(154)

我已经从create-react-app的index.html文件中删除了默认的React图标,但是它仍然显示。
下面是index.html文件的代码

<!DOCTYPE html>
<html lang="en" class="h-full bg-gray-50">
  <head>
    <meta charset="utf-8" />
    <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"
    />
    <title>ResumeBuilder</title>
  </head>
  <body class="h-full">
    <noscript>You need to enable JavaScript to run this app.</noscript>
    <div id="root"></div>
    <!--
      This HTML file is a template.
      If you open it directly in the browser, you will see an empty page.

      You can add webfonts, meta tags, or analytics to this file.
      The build step will place the bundled scripts into the <body> tag.

      To begin the development, run `npm start` or `yarn start`.
      To create a production bundle, use `npm run build` or `yarn build`.
    -->
  </body>
</html>

create-react-app的公共文件夹结构

如何删除它?

icnyk63a

icnyk63a1#

一个简单的捷径可以帮助:Ctrl+F5将对页面执行强制缓存清除。

h6my8fg2

h6my8fg22#

您应该将reactjs图标替换为您的网站徽标图标
你可以很容易地在线生成一个favicon有很多网站可以像这样-https://www.favicon-generator.org/
打开上面的网站,选择您的网站徽标,生成一个图标,然后下载zip文件,解压zip文件,从生成的文件夹中复制徽标图标,并将其替换为react js默认图标。

相关问题