import Config # Do not include metadata nor timestamps in development logs config :logger, :console, format: "[$level] $message\n" # Initialize plugs at runtime for faster development compilation config :phoenix, :plug_init_mode, :runtime<%= if @html do %> config :phoenix_live_view, # Include debug annotations and locations in rendered markup. # Changing this configuration will require mix clean and a full recompile. debug_heex_annotations: true, debug_tags_location: true, # Enable helpful, but potentially expensive runtime checks enable_expensive_runtime_checks: true<% end %><%= if @mailer do %> # Disable swoosh api client as it is only required for production adapters. config :swoosh, :api_client, false<% end %> # Set a higher stacktrace during development. Avoid configuring such # in production as building large stacktraces may be expensive. config :phoenix, :stacktrace_depth, 20