From 97ca8e0ba8ffc6591c8405444159086ec0db0ae5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Wed, 20 Sep 2017 11:37:57 +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 7a89fdfa..2bf9d1c9 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -707,7 +707,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