我在Heroku上有一个rails应用程序,工作正常[包括scss]。 但是,当我尝试通过将environment / production.rb的副本设置为environment / staging.rb来设置Heroku临时版本时 并使用以下命令:
$ heroku create --remote staging
$ heroku config:add RACK_ENV=staging RAILS_ENV=staging --remote staging
$ git push staging master
$ heroku run rake db:migrate --remote staging
$ heroku open --remote staging
heroku上的登台应用程序运行但没有所有的scss / css。
为什么scss在生产中工作但没有分段? 我以为我明白了问题是什么,但我现在意识到我没有。 我需要修理什么?