1

我正在将一个 Rails 应用程序推送到 Heroku(生产),并且炼油厂后端样式表中的 assets_helpers 没有被执行。因此,例如/assets/refinery/refinery-7fcfa3e350d8ea2e09ea6da68c6e16c9.css包含以下行:

#E7682C image_url("refinery/orange_button.png") repeat-x

任何帮助是极大的赞赏。我在想我只需要向 application.rb/production.rb 添加一些配置...仍在研究它

谢谢,

4

1 回答 1

1

上述问题可以通过在您的 production.rb 中的 config.assets.precompile 中包含路径“refinery/refinery.css”来解决。

所以我的 production.rb 文件现在包含以下行:

config.assets.precompile += %w( refinery/refinery.css )

于 2012-04-16T10:47:39.717 回答