From fd202a2fee9fa23debd1ee2b6392eed4bb090eb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Mon, 23 Oct 2017 17:16:15 +0200 Subject: [PATCH] Revert "Restore correctly the 9001 default port" This reverts commit b26cd8b90216d7b1247fb89502b9b8ba74d9901c. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 5a8fc63b..f7d7b5a5 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -716,7 +716,7 @@ gulp.task("express", function() { res.sendFile("index.html", {root: __dirname + "/dist/"}); }); - app.listen(9002); + app.listen(9001); }); //Rerun the task when a file changes