React
- 13 ответов
- 0 вопросов
9
Вклад в тег
// Tunnel the Browsersync server through a random Public URL
// -> http://randomstring23232.localtunnel.me
tunnel: true
// Attempt to use the URL "http://my-private-site.localtunnel.me"
tunnel: "my-private-site"
browserSync.init({
server: { baseDir: 'app/' },
notify: false,
online: true,
tunnel: "test", // или true если нужен рандомный туннель
browser: "chrome",
});