mirror of
https://github.com/woutdp/live_svelte
synced 2026-05-24 09:28:21 +00:00
55 lines
1.6 KiB
Elixir
55 lines
1.6 KiB
Elixir
# This file is responsible for configuring your application
|
|
# and its dependencies with the aid of the Config module.
|
|
#
|
|
# This configuration file is loaded before any dependency and
|
|
# is restricted to this project.
|
|
|
|
# General application configuration
|
|
import Config
|
|
|
|
config :phoenix_vite, PhoenixVite.Npm,
|
|
assets: [args: [], cd: Path.expand("..", __DIR__)],
|
|
vite: [
|
|
args: ~w(exec -- vite),
|
|
cd: Path.expand("../assets", __DIR__),
|
|
env: %{"MIX_BUILD_PATH" => Mix.Project.build_path()}
|
|
]
|
|
|
|
config :example,
|
|
ecto_repos: [Example.Repo]
|
|
|
|
# Configures the endpoint
|
|
config :example, ExampleWeb.Endpoint,
|
|
adapter: Bandit.PhoenixAdapter,
|
|
url: [host: "localhost"],
|
|
render_errors: [
|
|
formats: [html: ExampleWeb.ErrorHTML, json: ExampleWeb.ErrorJSON],
|
|
layout: false
|
|
],
|
|
pubsub_server: Example.PubSub,
|
|
live_view: [signing_salt: "7fNjZIKg"]
|
|
|
|
# Configures the mailer
|
|
#
|
|
# By default it uses the "Local" adapter which stores the emails
|
|
# locally. You can see the emails in your browser, at "/dev/mailbox".
|
|
#
|
|
# For production it's recommended to configure a different adapter
|
|
# at the `config/runtime.exs`.
|
|
config :example, Example.Mailer, adapter: Swoosh.Adapters.Local
|
|
|
|
# Configures Elixir's Logger
|
|
config :logger, :console,
|
|
format: "$time $metadata[$level] $message\n",
|
|
metadata: [:request_id]
|
|
|
|
# Use Jason for JSON parsing in Phoenix
|
|
config :phoenix, :json_library, Jason
|
|
|
|
# Configure live_svelte
|
|
config :live_svelte,
|
|
ssr: true
|
|
|
|
# Import environment specific config. This must remain at the bottom
|
|
# of this file so it overrides the configuration defined above.
|
|
import_config "#{config_env()}.exs"
|