Sabo
11/25/2022, 12:56 PMRails.application.routes.draw do
get '/', to: 'home#index', constraints: { subdomain: '' }
mount Spree::Core::Engine, at: '/', constraints: { subdomain: 'shop' }
end
but I have an error to find the HomeController raise MissingController.new(error.message, error.name)
PS. I just understood that it is certainly because it is in the Spree modulewaiting_for_dev
11/25/2022, 3:28 PMredirect helper from the routes: https://guides.rubyonrails.org/routing.html#redirectionSabo
11/25/2022, 5:24 PM