我正在使用premailer-rails在5.1.6 Rails应用程序中内联样式的电子邮件。
一切在开发中都可以正常工作,但是在生产中出现此错误(heroku)
The asset "mailer.css" is not present in the asset pipeline
我已经定义了文件assets\stylesheets\mailer.css
在邮件布局中,我有:<%= stylesheet_link_tag :mailer %>
我还将此添加到了assets.rb
:Rails.application.config.assets.precompile += %w( mailer.css )
我该如何解决?