My assets are not being properly precompiled to my staging heroku app. I usually use rake assets:precompile
before pushing but my senior developer told me not to use that and put /public/assets
into gitignore saying that heroku will automatically precompile
the assets. When I push, heroku says that it runs rake assets:precompile
but none of my assets show up. The page is just html.
possible causes: before my senior developer told me his way, I ran rake assets:precompile
and removed /public/assets
from gitignore as I though it wasn't suppose to be there. But after he told me, I put /public/assets back into .gitignore
and deleted all the public assets and the assets still are not working on the heroku staging app. What am I missing?