From 2913be4749282c30014a716b5a6b2d642c1f5bcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Wed, 4 Oct 2017 14:31:27 +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 f28862f6..0e7d374a 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