From fd2f3f6d9606c3bbe65add5b1828747c79f2906c Mon Sep 17 00:00:00 2001 From: Vincent Fiduccia Date: Fri, 22 Jun 2018 11:58:10 -0700 Subject: [PATCH] Change baseurl for dev --- gulpfile.babel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.babel.js b/gulpfile.babel.js index 3d3b5943844..ce333e9fff1 100644 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -66,7 +66,7 @@ gulp.task('hugo-staging', (cb) => { }); gulp.task('hugo-dev', (cb) => { - return spawn('hugo', ['--buildDrafts', '--buildFuture', '--baseURL=http://localhost:9001'], { stdio: 'inherit' }).on('close', (/* code */) => { + return spawn('hugo', ['--buildDrafts', '--buildFuture', '--baseURL='], { stdio: 'inherit' }).on('close', (/* code */) => { browserSync.reload(); cb(); });