From 251e2515b563856349498c6caf34e7a282f62937 Mon Sep 17 00:00:00 2001 From: Ricardo Marques Date: Thu, 17 May 2018 11:07:52 +0100 Subject: [PATCH] mgr/dashboard: ng serve bind to 0.0.0.0 This will allow access to ng serve from remote machines Signed-off-by: Ricardo Marques --- src/pybind/mgr/dashboard/frontend/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/dashboard/frontend/package.json b/src/pybind/mgr/dashboard/frontend/package.json index d15e7ec535c4..05754a6ce80d 100644 --- a/src/pybind/mgr/dashboard/frontend/package.json +++ b/src/pybind/mgr/dashboard/frontend/package.json @@ -4,7 +4,7 @@ "license": "MIT", "scripts": { "ng": "ng", - "start": "ng serve --delete-output-path false --proxy-config proxy.conf.json", + "start": "ng serve --delete-output-path false --proxy-config proxy.conf.json --host 0.0.0.0", "build": "ng build", "test": "ng test", "lint": "ng lint", -- 2.47.3