ce_dev.exs 356 B

123456789101112
  1. import Config
  2. import_config "dev.exs"
  3. config :esbuild,
  4. default: [
  5. args:
  6. ~w(js/app.js js/dashboard.js js/embed.host.js js/embed.content.js --bundle --target=es2017 --loader:.js=jsx --outdir=../priv/static/js --define:BUILD_EXTRA=false),
  7. cd: Path.expand("../assets", __DIR__),
  8. env: %{"NODE_PATH" => Path.expand("../deps", __DIR__)}
  9. ]