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