2

下午好,我準備在linux下運行apache + passenger + rvm + rails 4服務器,是爲圖標的外觀,第一個問題已經超過了採取樣式CSS是我解決啓用:ActionController :: RoutingError(沒有路由匹配[GET]「/font/fontello.woff」)

#不要回退到資產管道,如果預編譯的資產被遺漏。 config.assets.compile = true

#爲資產URL生成摘要。 config.assets.digest =真正的

的/配置/ enviroments/production.rb

但它仍然有圖標的問題,引用這些都是在以下路徑:

/項目/應用程序/資產/樣式表/ fontello/

在此先感謝

回答

0

如果我理解你的問題正確的同樣的問題,我面臨而回。我通過改變/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; 
} 

希望這有助於!

+0

只是在2017年登記。此修復程序對我來說不起作用,當我發現什麼時候會報告回來。 – Schwad

相關問題