deploying to heroku — can't get rid of the “welcome to rails” default page

前端 未结 1 762
故里飘歌
故里飘歌 2021-01-25 08:38

I made a very simple rails app on local host and deleted public/index.html and changed the :root route to another page. It worked fine, but when I deployed to heroku, that index

相关标签:
1条回答
  • 2021-01-25 09:02

    Did you make sure to remove public/index.html from your git repo that you're pushing as well?

    git rm public/index.html
    git add -u
    git commit -m "Removed index.html"
    
    0 讨论(0)
提交回复
热议问题