Devise_token_auth導入時にURLを変更する方法
導入そのものについては参考になる他記事がたくさんあるので省略。 他記事でよく見かけたroutes Rails.application.routes.draw do namespace :api do namespace :v1, defaults: {format: :json } do mount_devise_token_auth_for 'User', at: 'auth', controllers: { registrations: 'api/v1/registrations', sessions: 'devise_token_auth/sessions' }