2021-10-19 19:28:25 +00:00
|
|
|
import Config
|
2021-08-12 19:07:19 +00:00
|
|
|
|
|
|
|
# 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__)
|
|
|
|
]
|
|
|
|
]
|