Heroku problem : The page you were looking for doesn't exist

后端 未结 13 1322
你的背包
你的背包 2020-12-24 06:43

I have followed book until chapter 5 finished and it\'s working OK in my linux workstation when I push to Heroku, all data pushed correctly but when I try to open Heroku (ht

13条回答
  •  不知归路
    2020-12-24 07:21

    I got the same problem; however, after changing 1 line code of production.rb located in config/environments/production.rb from

    config.assets.compile = false
    

    to

    config.assets.compile = true
    

    commit the new change. Then my sample app works fine on heroku

提交回复
热议问题