legendary-doc-site/config/e2e.exs

19 lines
419 B
Elixir

import 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__)
]
]