我们的Web应用程序正在使用需要基本身份验证的REST API。
我想写这样的浏览器同步gulp任务:
gulp.task('browser-sync', function() {
browserSync({
server: {
baseDir: './'
},
authenticate: 'authentication-token-here-djfhjsdfjsgdf'
});
});
如何配置?