on live view 0.18 latest,
in the router,
when the route is scoped “/”, all is normal
scope "/", AppWeb do
pipe_through [:not_connected_browser, :redirect_if_user_is_authenticated]
live "/gothere", AdminLive.Gothere, :show
end
but when it is scoped “/subdomain” the router fails, asking for
AppWeb.AppWeb.AdminLive.Gothere module hence doubling the AppWeb
instead of
AppWeb.AdminLive.Gothere module
scope "/admin", AppWeb do
pipe_through [:not_connected_browser, :redirect_if_user_is_authenticated]
live "/gothere", AdminLive.Gothere, :show
end
with a normal route not live, all is ok