Trying to make it so that it just renders a 404 message instead of showing all of the available routes but I can’t seem to change anything. I’ve tried removing
def template_not_found(template, _assigns) do
Phoenix.Controller.status_message_from_template(template)
end
and adding
def render("404.html", _assigns) do
"Internal Server Error"
end
in AppWeb.ErrorView but nothing seems to happen.





















