1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00

Open project url instead of localhost when running gulp

This commit is contained in:
Antoine Boulanger
2018-09-13 09:26:15 -04:00
parent 932bdb8126
commit d8d79180fe

View File

@@ -6,7 +6,9 @@ export const server = browserSync.create();
function serve(done) {
server.init({
notify: false,
proxy: paths.url
proxy: paths.url,
host: paths.url,
open: 'external'
});
done();
}