From 17b6c47c5ac2718426a89819c3e9a49eaf129c2a Mon Sep 17 00:00:00 2001 From: Timothy Lim Date: Sun, 19 Oct 2014 09:40:30 +1100 Subject: [PATCH] Open browser to correct port --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 1cb23fd..5fff4e9 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -90,8 +90,8 @@ gulp.task('connect', ['build'], function(done) { port: 35730 } }); - - opn('http://localhost:8080', done); + // change ports so don't conflict with docker containers or vagrant envs + opn('http://localhost:8282', done); }); gulp.task('watch', function() {