I get the following error when I try to access my Rails application hosted on an Apache server with Phusion Passenger providing the Rails code integration to Apache. I have run rake assets:precompile on this server so I'm not sure why I'm getting this erro (as I don't get any problems with my precompile now).
ActionView::Template::Error (twitter-icon.svg isn't precompiled):
Any ideas?
twitter-icon.svg
in your Rails app (in/app/assets/images
?) – Cody Caughlanconfig.assets.precompile += %w( blueprint/print.css )
in production.rb and runbundle exec rake assets:precompile RAILS_ENV=production
– Muntasim