Em config.rb:
http_images_path = '/path/to/images/'
http_fonts_path = '/path/to/fonts/'
relative_assets = false
Auxiliares de URL em seu .scss (você pode usar sublinhado ou traço):
.my-class {
// Using a dash.
background: image-url('sprites.png');
}
@font-face {
// Using underscore.
font-family: 'my-custom-font';
src: font_url('my-custom-font.eot');
src: font_url('my-custom-font?#iefix') format('embedded-opentype'),
font_url('my-custom-font.woff') format('woff'),
font_url('my-custom-font.ttf') format('truetype'),
font_url('my-custom-font.svg#my-custom-font') format('svg');
font-weight: normal;
font-style: normal;
}