Look for which module in your app defines a view
function e.g.
defmodule YourModule do
dev view do
# ...
end
end
In your case it should be BlogWeb
but who knows, maybe it’s another one.
Look for which module in your app defines a view
function e.g.
defmodule YourModule do
dev view do
# ...
end
end
In your case it should be BlogWeb
but who knows, maybe it’s another one.