Skip to content

Instantly share code, notes, and snippets.

@jhouedanou
Created September 27, 2017 11:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jhouedanou/07aa34588f3b130b1db96b2882b2a81b to your computer and use it in GitHub Desktop.
Save jhouedanou/07aa34588f3b130b1db96b2882b2a81b to your computer and use it in GitHub Desktop.
gulp.task('browser-sync', function() {
var files = [
'./*.php',
'./*.html',
'./*.js'
];
browserSync.init(files, {
// server: {
// baseDir: "./",
// index: "index.html"
// directory: true
// },
online:true,
proxy: "localhost/wordpress/",
notify: true
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment