Disabling the debug errors to show the real ones even in dev envi.

This commit is contained in:
2026-02-11 13:42:33 +01:00
parent 1eb6cbe0e6
commit 7ad08fa91d

View File

@ -22,7 +22,7 @@ config :beet_round_server, BeetRoundServerWeb.Endpoint,
http: [ip: {127, 0, 0, 1}, port: String.to_integer(System.get_env("PORT") || "4000")],
check_origin: false,
code_reloader: true,
debug_errors: true,
debug_errors: false,
secret_key_base: "ha7k0JD3LvWrZgupXaVbXq6SQhvTwc6R/HyqCJIpANEtcSni88QELgaYgvr5I49M",
watchers: [
esbuild: {Esbuild, :install_and_run, [:beet_round_server, ~w(--sourcemap=inline --watch)]},