我正在使用rails 4.
在app / assets / images / myimage.png
上添加了一个文件我想在我的应用中使用:
<%= image_tag 'myimage.png' %>
哇,真的很容易和美好!但等等..这给了我这个错误
Asset was not declared to be precompiled in production.
Add `Rails.application.config.assets.precompile += %w( myimage.png )`
to `config/initializers/assets.rb` and restart your server
我的应用程序中的这个 EACH 图像必须包含在该数组中?唉..
但是等等,我的assets.rb有这个评论:
# ...and all non-JS/CSS in app/assets folder are already added.
那么,它是否已添加?