Skip to content
Snippets Groups Projects
Commit 25cbb845 authored by Lindsey Bieda's avatar Lindsey Bieda Committed by Eugen Rochko
Browse files

Red favicon for dev (#2470)

* Set a dev specific favicon

* Consistent spacing

* Add trailing slash for consistency

* Update to remove interpolation
parent 416c9675
No related branches found
No related tags found
No related merge requests found
......@@ -13,4 +13,9 @@ module ApplicationHelper
other_classes = "#{other_classes} rtl" if [:ar, :fa].include?(I18n.locale)
other_classes
end
def favicon_path
env_suffix = Rails.env.production? ? '' : '-dev'
asset_path "favicon#{env_suffix}.ico"
end
end
......@@ -5,6 +5,7 @@
%meta{:name => 'viewport', :content => 'width=device-width, initial-scale=1'}/
%meta{'http-equiv' => 'X-UA-Compatible', :content => 'IE=edge'}/
%link{:rel => "icon", :href => favicon_path, :type => "image/x-icon"}/
%link{:rel => "apple-touch-icon", :sizes => "180x180", :href => "/apple-touch-icon.png"}/
%link{:rel => "mask-icon", :href => "/mask-icon.svg", :color => "#2B90D9"}/
%link{:rel => "manifest", :href => "/manifest.json"}/
......
public/favicon-dev.ico

9.62 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment