Routing Error No route matches [GET] "/users/sign_up" ビューが表示されない
config/routes.rb
Rails.application.routes.draw do
root to: "prototypes#index"
end
現状の記述です。
なぜルーティングエラーが起きるのか分かりません。
分かる方居ましたら教えてください。
prototypes_controller.rb
class PrototypesController < ApplicationController
def index
end
end
app/views/prototypes/index.html.erb
<h1>トップページ</h1>
rails routes
Prefix Verb URI Pattern Controller#Action
root GET / prototypes#index
なぜルーティングエラーが起きるか分かりません。
分かる方居ましたら教えて下さい。
0