mirror of
https://github.com/ClaperCo/Claper.git
synced 2026-02-24 20:19:48 +01:00
52 lines
1.6 KiB
Elixir
52 lines
1.6 KiB
Elixir
import Config
|
|
|
|
# For development, we disable any cache and enable
|
|
# debugging and code reloading.
|
|
#
|
|
# The watchers configuration can be used to run external
|
|
# watchers to your application. For example, we use it
|
|
# with esbuild to bundle .js and .css sources.
|
|
config :claper, ClaperWeb.Endpoint,
|
|
check_origin: false,
|
|
code_reloader: true,
|
|
debug_errors: true,
|
|
watchers: [
|
|
# Start the esbuild watcher by calling Esbuild.install_and_run(:default, args)
|
|
esbuild: {Esbuild, :install_and_run, [:default, ~w(--sourcemap=inline --watch)]},
|
|
sass: {
|
|
DartSass,
|
|
:install_and_run,
|
|
[:default, ~w(--embed-source-map --source-map-urls=absolute --watch)]
|
|
},
|
|
npx: [
|
|
"tailwindcss",
|
|
"--input=css/app.css",
|
|
"--output=../priv/static/assets/app.css",
|
|
"--postcss",
|
|
"--watch",
|
|
cd: Path.expand("../assets", __DIR__)
|
|
]
|
|
]
|
|
|
|
# Watch static and templates for browser reloading.
|
|
config :claper, ClaperWeb.Endpoint,
|
|
live_reload: [
|
|
patterns: [
|
|
~r"priv/static/[^uploads].*(js|css|png|jpeg|jpg|gif|svg)$",
|
|
~r"priv/gettext/.*(po)$",
|
|
~r"lib/claper_web/(live|views)/.*(ex)$",
|
|
~r"lib/claper_web/templates/.*(eex)$",
|
|
~r"assets/.*\.(js|css)$"
|
|
]
|
|
]
|
|
|
|
# Do not include metadata nor timestamps in development logs
|
|
config :logger, :console, format: "[$level] $message\n"
|
|
|
|
# Set a higher stacktrace during development. Avoid configuring such
|
|
# in production as building large stacktraces may be expensive.
|
|
config :phoenix, :stacktrace_depth, 20
|
|
|
|
# Initialize plugs at runtime for faster development compilation
|
|
config :phoenix, :plug_init_mode, :runtime
|