如果我理解你的問題正確的同樣的問題,我面臨而回。我通過改變/app/assets/stylesheets/icons.css
文件固定我的問題:
@font-face {
font-family: 'icons';
src: url('../font/icons.eot?26481838');
src: url('../font/icons.eot?26481838#iefix') format('embedded-opentype'),
url('../font/icons.woff?26481838') format('woff'),
url('../font/icons.ttf?26481838') format('truetype'),
url('../font/icons.svg?26481838#icons') format('svg');
font-weight: normal;
font-style: normal;
}
我從每行的beggining刪除"../"
所以它看起來是這樣的:
@font-face {
font-family: 'icons';
src: url('font/icons.eot?26481838');
src: url('font/icons.eot?26481838#iefix') format('embedded-opentype'),
url('font/icons.woff?26481838') format('woff'),
url('font/icons.ttf?26481838') format('truetype'),
url('font/icons.svg?26481838#icons') format('svg');
font-weight: normal;
font-style: normal;
}
希望這有助於!
只是在2017年登記。此修復程序對我來說不起作用,當我發現什麼時候會報告回來。 – Schwad