I've followed the guide from Heroku by adding environment variables and adding
config.action_controller.asset_host = "https://#{ENV['FOG_DIRECTORY']}.s3.amazonaws.com"
to environments/production.rb
I see that the assets are uploaded to my s3 bucket and I can access them.
but on my website I dont see any assets that use the asset_path tag like on css
background-image: url("<%= asset_path "image.jpg" %>");
when I look at the source, I see a link to a file like this:
url("https://.s3.amazonaws.com/assets/image.jpg")
This is weird, since css and js works (using the FOG_DIRECTORY var). so why does FOG_DIRECTORY env is skipped here as if it doesn't exist?