aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.babel.js
diff options
context:
space:
mode:
Diffstat (limited to 'gulpfile.babel.js')
-rw-r--r--gulpfile.babel.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/gulpfile.babel.js b/gulpfile.babel.js
index d947974b3..95b026f66 100644
--- a/gulpfile.babel.js
+++ b/gulpfile.babel.js
@@ -110,7 +110,9 @@ export function watch() {
110} 110}
111 111
112export function webserver() { 112export function webserver() {
113 gulp.src(paths.dest) 113 gulp.src([
114 paths.dest,
115 ])
114 .pipe(server({ 116 .pipe(server({
115 livereload: true, 117 livereload: true,
116 })); 118 }));