How to hide or remove about information using phoenix framework?

You can disable the debug annotations in dev mode if you want by changing the dev.exs config:

- config :phoenix_live_view, debug_heex_annotations: true
+ config :phoenix_live_view, debug_heex_annotations: false

Just be aware

Changing this configuration will require mix clean and a full recompile.