From 0766e50abb5eb3b559591074d86ad38bafa08297 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Sat, 28 Jan 2023 20:26:33 +0100 Subject: [PATCH] Configure timezone database --- config/config.exs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/config.exs b/config/config.exs index d1e0007..309b485 100644 --- a/config/config.exs +++ b/config/config.exs @@ -71,6 +71,8 @@ config :swoosh, :api_client, Swoosh.ApiClient.Hackney config :tesla, adapter: {Tesla.Adapter.Mint, timeout: :timer.seconds(30)} +config :elixir, :time_zone_database, Tzdata.TimeZoneDatabase + # Import environment specific config. This must remain at the bottom # of this file so it overrides the configuration defined above. import_config "#{Mix.env()}.exs" -- 2.38.4