在試圖讓我的SCSS進口一些字體我遇到以下:@include字體面SCSS問題
我精確複製the docs from the compass website,但是當CSS被編譯羅盤增加了隨機數字背後我src
的網址。該SCSS代碼我寫的,所得CSS看起來像這樣
SCSS
@include font-face("NexaBold", font-files("nexa_bold-webfont.woff", "nexa_bold-webfont.ttf", "nexa_bold-webfont.svg", "nexa_bold-webfont.eot"));
得到的CSS
@font-face {
font-family: "NexaBold";
src: url('/fonts/nexa_bold-webfont.woff?1417439024') format('woff'), url('/fonts/nexa_bold-webfont.ttf?1417439024') format('truetype'), url('/fonts/nexa_bold-webfont.svg?1417439024') format('svg'), url('/fonts/nexa_bold-webfont.eot?1417439024') format('embedded-opentype');
}
謝謝!
可能重複從指南針生成的精靈圖像文件名?](http://stackoverflow.com/questions/9183133/how-to-remove-the-hash-from-compasss-generated-sprite-image-filenames)(將隨機數添加到源URL被Compass稱爲「緩存清除」,它被用於各種來源,而不僅僅是字體。) – hon2a 2014-12-01 21:23:04