Reputation: 161
Here is what I am trying.
<%= image_tag 'favicon.ico', rel="icon" type="image/x-icon" %>
Upvotes: 6
Views: 7487
Reputation: 831
How about using favicon_link_tag
helper method instead?
<%= favicon_link_tag 'favicon.ico' %>
Upvotes: 1
Reputation: 3451
Try add
<%= favicon_link_tag 'favicon.ico' %>
in head
section in your application.html.erb
Upvotes: 17