0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Reactのfavicon、titleの追加

Posted at

はじめに

Reactのfavicon、titleの追加方法の備忘録です💁
初心者です😅
間違えてる部分多々あると思います。
もし見つけた場合、ツッコミいただけると助かります🙇

内容

Reactのfavicon、titleの追加はReactフォルダの中の「public」の中にある「index html」ファイルを修正することで反映する。
また別のやり方(Helmet)もあるが基本はこれになる。

index html
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <link rel="icon" href="%PUBLIC_URL%/myfavicon2.png" />
    <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>mysite</title>
    <link rel="apple-touch-icon" href="%PUBLIC_URL%/yourLogo.ico" />

押さえておくべき点🧠

  • 「public」は静的なものを保管してる場所
  • faviconの拡張子は「.ico」を使うのがより良い。
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?