I'm using typicons and heroku in my rails app and its working locally but not in production, I'm not getting any routing error in heroku and I'm not sure what I'm missing. I have a fonts folder in the assets folder and I'm using
config.assets.paths << Rails.root.join("app", "assets", "fonts")
inside my config.application.rb file under the application class.
Inside the typicons.css.scss (which is in the stylesheets folder) I have
@font-face {
font-family: 'typicons';
src: font-url('typicons.eot');
src: font-url('typicons.eot?#iefix') format('embedded-opentype'),
font-url('typicons.woff') format('woff'),
font-url('typicons.ttf') format('truetype'),
font-url('typicons.svg#typicons') format('svg');
font-weight: normal;
font-style: normal;
}