我正在将一个rails应用程序推送到Heroku(生产),并且炼油厂后端样式表中的asset_helpers没有被执行。例如,/assets/refinery/refinery-7fcfa3e350d8ea2e09ea6da68c6e16c9.css
包含以下行:
#E7682C image_url("refinery/orange_button.png") repeat-x
非常感谢任何帮助。我想我只需要在application.rb / production.rb中添加一些配置......还在研究它
谢谢,
答案 0 :(得分:1)
通过在production.rb中的config.assets.precompile中包含路径'refinery / refinery.css',可以解决上述问题。
所以我的production.rb文件现在包含以下行:
config.assets.precompile += %w( refinery/refinery.css )