这是我的config.rb:
# Require any additional compass plugins here.
require 'font-awesome-sass'
require 'bootstrap-sass'
# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "css"
sass_dir = "sass"
images_dir = "images"
javascripts_dir = "js"
我的styles.scss:
@import "bootstrap-variables";
@import "bootstrap";
@import "font-awesome-compass";
@import "font-awesome";
@import "theme";
问题是我编译的css是: CSS / Styles.css中 CSS /字体真棒/字体awesome.css
font-awesome.css font-face导致:../ fonts
哪个不起作用,应该是:
../../字体
或者css / font-awesome.css而不是在子目录中。
知道如何解决这个问题吗?
谢谢。 :)
答案 0 :(得分:0)
您还需要在config.rb中包含fonts_dir
fonts_dir =“[path] / fonts”