introduce VITE_HOST env var and pass it to the node watcher vite --host

This commit is contained in:
summersamara
2023-11-23 15:33:31 +01:00
parent 970597876b
commit bfb7e3ca40
4 changed files with 7 additions and 4 deletions

View File

@@ -15,7 +15,9 @@ config :mobilizon, Mobilizon.Web.Endpoint,
check_origin: false,
watchers: [
node: [
"node_modules/.bin/vite"
"node_modules/.bin/vite",
"--host",
System.get_env("VITE_HOST", "localhost")
]
]