You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Browsers you attempted to reproduce this bug on (the more the merrier):
Does the problem persist after removing "assets/node_modules" and trying again? Yes/no:
Actual behavior
Making this change in config/dev.exs
config :phoenix_live_view,
# Include HEEx debug annotations as HTML comments in rendered markup
- debug_heex_annotations: true,+ debug_heex_annotations: false,
# Enable helpful, but potentially expensive runtime checks
enable_expensive_runtime_checks: true
and running the app again with iex -S mix doesn't seem to recompile the templates and keeps showing the annotations in the templates rendered with Phoenix.View.render_to_string
Right now I'm using mix compile --force as a workaround.
Expected behavior
Maybe debug_heex_annotations could force recompilation of the templates.
The text was updated successfully, but these errors were encountered:
👋
Environment
Actual behavior
Making this change in
config/dev.exs
and running the app again with
iex -S mix
doesn't seem to recompile the templates and keeps showing the annotations in the templates rendered withPhoenix.View.render_to_string
Right now I'm using
mix compile --force
as a workaround.Expected behavior
Maybe
debug_heex_annotations
could force recompilation of the templates.The text was updated successfully, but these errors were encountered: