I configured my rails app to use a different asset prefix, by editing the file conf/application.rb
.
+config.assets.prefix = '/wrapper/thing'
It works for asset pipeline but when I try to use it on my view.
<%= asset_path('milk.png') %>
It still outputs "/assets/milk.png"
instead of "/wrapper/thing/milk.png"
.
Am I missing something?