Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion installer/templates/phx_single/config/dev.exs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ config :phoenix, :stacktrace_depth, 20
config :phoenix, :plug_init_mode, :runtime<%= if @html do %>

config :phoenix_live_view,
# Include HEEx debug annotations as HTML comments in rendered markup
# Include HEEx debug annotations as HTML comments in rendered markup.
# Changing this configuration will require mix clean and a full recompile.
debug_heex_annotations: true,
# Enable helpful, but potentially expensive runtime checks
enable_expensive_runtime_checks: true<% end %><%= if @mailer do %>
Expand Down
3 changes: 2 additions & 1 deletion installer/templates/phx_umbrella/config/dev.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ config :logger, :default_formatter, format: "[$level] $message\n"
config :phoenix, :plug_init_mode, :runtime<%= if @html do %>

config :phoenix_live_view,
# Include HEEx debug annotations as HTML comments in rendered markup
# Include HEEx debug annotations as HTML comments in rendered markup.
# Changing this configuration will require mix clean and a full recompile.
debug_heex_annotations: true,
# Enable helpful, but potentially expensive runtime checks
enable_expensive_runtime_checks: true<% end %><%= if @mailer do %>
Expand Down
Loading