1

How to specify the favicon for the admin panel? Should it be specified somewhere in the configuration? No information regarding this is given in the wiki.

Srivathsa
  • 941
  • 1
  • 10
  • 27

3 Answers3

3

Just throw a favicon.ico in your /public folder.

t56k
  • 6,769
  • 9
  • 52
  • 115
0

Add below snippet in your template's header tag.

<%= favicon_link_tag 'favicon.ico' %>

see this link.

Community
  • 1
  • 1
Kundan Pandit
  • 412
  • 6
  • 17
0

try <%= favicon_link_tag 'favicon.ico' %>

and moving the favicon.ico to the /public/images directory.

Gagan Gami
  • 10,121
  • 1
  • 29
  • 55