Reputation: 750
My app works fine in development (images show), but when deploying to Heroku they mysteriously disappear.
The code is
<img src="@routes.Assets.at("images/myImage.png")"" />
Is Heroku messing this up or am I missing something?
Upvotes: 3
Views: 427
Reputation: 29433
Make sure your project's public
directory is in your git repo.
Upvotes: 3