I am having trouble getting fonts to work on my sass website. I am new to sass and compass and everything is working except the fonts.
I generated the font-face files and put them in a folder library/font
In the config.rb file I added the following lines:
css_dir = "/"
sass_dir = "library/sass"
images_dir = "library/img"
fonts_dir = "library/font"
javascripts_dir = "library/js"
The generated font-face path in the style.css has a forward slash at the start.
src: url('///fonts/fontawesome-webfont-webfont.ttf') format('truetype'), url('///fonts/fontawesome-webfont-webfont.svg') format('svg'), url('///fonts/fontawesome-webfont-webfont.woff') format('woff'), url('///fonts/fontawesome-webfont-webfont.eot') format('embedded-opentype');
Any ideas what I am doing wrong?