所以我刚刚将我的网站上传到heroku但没有显示任何样式。我不知道问题是什么。
Heroku网站http://shielded-garden-1674.herokuapp.com/
这是我的Github回购https://github.com/LaurentLousky/todolist
这是" heroku log"给我。 http://pastebin.com/cj17Pc4a
我使用Foundation 5进行样式化。
非常感谢你们,非常感谢任何帮助。
答案 0 :(得分:2)
默认情况下,Heroku不会为您的资产提供服务。您应该将其添加到config/application.rb
:
config.serve_static_assets = true
或者将其添加到Gemfile
并运行bundle install
:
gem 'rails_12factor', group: :production
有关更详尽的说明,请参阅https://devcenter.heroku.com/articles/rails-4-asset-pipeline#serve-assets和https://devcenter.heroku.com/articles/rails-asset-pipeline
答案 1 :(得分:1)
我无法看到你的Heroku应用程序。
但是,请检查您的代码是否以与命名文件相同的方式添加/链接您的css文件。例如,如果在您的代码中您的文件名为" Styles.css",请确保您的代码将文件名称命名为" Styles.css"而不是" styles.css"因为一旦在Heroku云中,系统可能无法识别该文件。