import Config config :benchmark, ecto_repos: [Benchmark.Repo] config :benchmark, BenchmarkWeb.Endpoint, url: [host: "localhost"], adapter: Bandit.PhoenixAdapter, render_errors: [formats: [html: BenchmarkWeb.ErrorHTML], layout: false], pubsub_server: Benchmark.PubSub, live_view: [signing_salt: "bnchmrk_salt_ok"] config :esbuild, version: "0.17.11", default: [ args: ~w(js/app.js --bundle --target=es2017 --outdir=../priv/static/assets --external:/fonts/* --external:/images/*), cd: Path.expand("../assets", __DIR__), env: %{"NODE_PATH" => Path.expand("../deps", __DIR__)} ] config :logger, :console, format: "$time $metadata[$level] $message\n", metadata: [:request_id] config :phoenix, :json_library, Jason import_config "#{config_env()}.exs"