LoginSignup
0
0

More than 3 years have passed since last update.

railsでfaviconを3ステップで実装してみた

Posted at

STEP1

下記ファイルに<%= favicon\_link\_tag('favicon.ico') %>を追加する

application.html.erb
<!DOCTYPE  html>

<html>
<head>
  <title>Sample</title>

  <%=  favicon\_link\_tag('favicon.ico') %>//この1行を追加する

  </head>

  [省略]

STEP2

下記のサイトでアイコンにしたい画像を変換する
https://ao-system.net/favicon/
favicon.icoが生成される

STEP3

assets/assets/images配下にfavicon.icoファイルを設置する
スクリーンショット 2019-10-28 21.17.20.png

あとはサーバーを再起動すれば実装されています!!

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