Skip to content

Commit

Permalink
Set gulp connect to listen on any IP addresses available (Modernizr#2677
Browse files Browse the repository at this point in the history
)
  • Loading branch information
heliocorreia authored Oct 19, 2021
1 parent a8a24bf commit 28d969e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gulpfile.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ gulp.task('pug', () => {

gulp.task('serve:gh-pages', gulp.series('clean', 'generate', 'pug', 'copy:gh-pages', (done) => {
connect.server({
root: 'gh-pages/'
host: '0.0.0.0',
root: 'gh-pages/',
});
done();
}));
Expand Down

0 comments on commit 28d969e

Please sign in to comment.