I am trying to get Font Awesome working with my rails app following: http://fontawesome.io/get-started/
I do not wish to use the CDN as I also want to use other fonts that have no CDN so I want to understand how to get non CDN fonts working: https://github.com/540co/govicons
I have downloaded and extracted Font Awesome into:
/app/assets/fonts/font-awesome-4.7.0
I don't know if I am using CSS or SASS? In my stylesheets folder I have files with both css and sass extensions. I have an application.css file and an empty application.scss file. All my other files have the scss extension.
If I follow the scss instructions then step 2 is:
Open your project's font-awesome/less/variables.less or font-awesome/scss/_variables.scss and edit the @fa-font-path or $fa-font-path variable to point to your font directory.
This file is located in:
/app/assets/fonts/font-awesome-4.7.0/scss/_variables.scss
This variable currently reads:
$fa-font-path: "../fonts" !default;
What should this be updated to?