1
0
Fork 0

Fix client dev mode

This commit is contained in:
Chocobozzz 2020-02-10 14:48:45 +01:00 committed by Chocobozzz
parent 7811819b1a
commit 0e9c3b2810
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
set -eu
clientCommand="cd client && node node_modules/.bin/ng serve --proxy-config proxy.config.json --hmr --configuration hmr,fr --host 0.0.0.0 --disable-host-check --port 3000"
clientCommand="cd client && node node_modules/.bin/ng serve --proxy-config proxy.config.json --hmr --configuration hmr --host 0.0.0.0 --disable-host-check --port 3000"
serverCommand="npm run build:server && NODE_ENV=test node dist/server"
if [ ! -z ${1+x} ] && [ "$1" == "--skip-server" ]; then