I'm using Foundation 5 - foundation-libsass-template. Using bower I've added foundation-icons with the following command "bower install foundation-icons --save"
. This command downloads the foundation-icon package and saves it to the bower_components folder and modifies my bower.json
file.
{
"name": "foundation-libsass-template",
"dependencies": {
"foundation": "zurb/bower-foundation",
"foundation-icon-fonts": "zurb/foundation-icon-fonts"
}
}
Problem:
When I add @import "foundation-icon-fonts";
to my app.scss file Grunt returns an error because it can't find the file:
Warning: C:/Users/Chris/Websites/example.com/lp/new/scss/app.scss:3: file to import not found or unreadable: "foundation-icon-fonts"
Question 1: Do I need to modify the Grunt.js file in order to include this library? If so, could someone please provide an example? Thanks.