legendary-doc-site/config/e2e.exs
2021-08-12 19:07:19 +00:00

19 lines
420 B
Elixir

use Mix.Config
# Start with test config
import_config "test.exs"
config :app, AppWeb.Endpoint,
http: [port: 4002],
server: true,
watchers: [
node: [
"node_modules/webpack/bin/webpack.js",
"--mode",
"development",
"--watch",
"--watch-options-stdin",
"--progress",
cd: Path.expand("../apps/app/assets", __DIR__)
]
]