From: Chocobozzz Date: Mon, 10 Feb 2020 13:48:45 +0000 (+0100) Subject: Fix client dev mode X-Git-Tag: v2.2.0-rc.1~506 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=0e9c3b2810aa3fc8bbf5275e42ce621efc6cdb66;p=github%2FChocobozzz%2FPeerTube.git Fix client dev mode --- diff --git a/scripts/dev/client.sh b/scripts/dev/client.sh index a36a47a34..bcb8b88f6 100755 --- a/scripts/dev/client.sh +++ b/scripts/dev/client.sh @@ -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