Can someone tell me why my proxy URL isn't working with BrowserSync and Gulp? Instead, it just keeps using http://localhost:3000 as the dev URL.
gulp.task('watch', ['bs'], function() { gulp.watch('scss/*.scss', ['scss', browserSync.reload]); }); gulp.task('bs', function() { browserSync.init(['css/style1.css', 'css/style2.css'], { proxy: 'dev.site.com' }); }); gulp.task('default', ['scss', 'watch']);
portas configured on my vhost (port 80). now is working fine. hope help