You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I set up a middleman project with foundation, using axyz/middleman-zurb-foundation.
Then, I used bower install foundation-icon-fonts to install the font icon package.
I set up the foundation icon path in app.css.scss as $fi-path: "../bower_components/foundation-icon-fonts";
The middleman build output shows that the app.css file references url("foundation-icons.woff") at the root instead of the above path.
I discovered this was because the build was simply copying foundation-icons.css instead of processing _foundation-icons.scss. I resolved this by moving foundation-icons.css to a .bkp file name so that middleman would actually look into the scss file and see my new path.
Is this expected behavior? Is there some other pre-process step I should make before middleman build?
The text was updated successfully, but these errors were encountered:
bower install foundation-icon-fonts
to install the font icon package.app.css.scss
as$fi-path: "../bower_components/foundation-icon-fonts";
middleman build
output shows that the app.css file referencesurl("foundation-icons.woff")
at the root instead of the above path.I discovered this was because the build was simply copying
foundation-icons.css
instead of processing_foundation-icons.scss
. I resolved this by movingfoundation-icons.css
to a.bkp
file name so that middleman would actually look into the scss file and see my new path.Is this expected behavior? Is there some other pre-process step I should make before
middleman build
?The text was updated successfully, but these errors were encountered: