Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 614 Bytes

add-fontawesome.md

File metadata and controls

22 lines (16 loc) · 614 Bytes

How to add fontawesome?

First, you need install fontawesome through bower

bower install fontawesome

Next, you need add to your scss file this lines (please, check the paths if you change location of generator main.scss file):

$fa-font-path: "../../bower_components/font-awesome/fonts";
@import "../../bower_components/font-awesome/scss/font-awesome.scss";

Finally, you need add this pipeline in gulp/build.js, in html task:

.pipe($.replace('../../bower_components/font-awesome/fonts', '../fonts'))