From a9f75418fe2c51316cf76703708908047b7902a5 Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Fri, 1 Jun 2018 11:31:10 +0200 Subject: [PATCH] fix local server address --- gulpfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index afa0d5a9..01b7c350 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -73,8 +73,8 @@ gulp.task('js:build', function() { gulp.task('serve', ['browser-sync', 'run-server', 'sass:build', 'sass:watch', 'copy'], function() { bundle(true); - // opens the browser window with the correct url, which is localhost.com - opn('http://www.localhost.com:3000'); + // opens the browser window with the correct url, which is localhost:300 + opn('http://localhost:3000'); }); gulp.task('jest', function(done) {