6

我的资产管道中有一个名为字体的文件夹。它无需任何添加即可工作application.rb

在目录中,我有不同的字体类型,例如文件夹中的 .eof、.ttf 等,就像这样

Assets
    Typefaces
        Eof
           ...files
        Ttf
           ...files

除非字体在资产/字体中,否则它们不会成为资产管道的一部分。资产管道不会进入子目录。

我如何让资产管道超越资产/字体进入资产/字体/eof、资产/字体/ttf等?

4

2 回答 2

13

在您的app/assets/javascripts/application.js文件中,尝试输入:

//= require_tree ../Typefaces

查看更多: http: //guides.rubyonrails.org/asset_pipeline.html

让我知道这是否有效。

于 2012-10-28T11:43:03.150 回答
8

在 application.css

/*
*= require_self
*= require_tree ./folder_name/

*/

详细参考: http ://railscasts.com/episodes/279-understanding-the-asset-pipeline?view=asciicast

于 2013-04-05T10:32:35.147 回答