Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free triallucas braum
405 PointsHeroku can not render the page correctly
You can see at http://fitners.herokuapp.com/ that my page is not rendering correctly (no templates, css and images).
why this? what should I do?
2 Answers
Kevin Kenger
32,834 PointsHey Lucas,
What worked for me was making sure these four settings were true in config/environments/production:
config.cache_classes = true
config.serve_static_assets = true
config.assets.compile = true
config.assets.digest = true
lucas braum
405 PointsThanks, it is working now!