Upgraded Rails to 6, getting Blocked host Error

后端 未结 6 1608
闹比i
闹比i 2021-02-03 19:41

I needed the new function in ActiveStorage to resize_to_fill so I upgraded to Ruby 2.5.1 and Rails 6.

ruby \'2.5.1\'

gem \"rails\", github: \"rails/rails\"
         


        
6条回答
  •  春和景丽
    2021-02-03 20:33

    Simple solution:

    Add this line to config/environments/development.rb

    config.hosts << /[a-z0-9]+\.ngrok\.io/
    

    Restart your rails server and it will work

提交回复
热议问题