You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
200 B

  1. /**
  2. * Require Browsersync
  3. */
  4. var browserSync = require('browser-sync');
  5. /**
  6. * Run Browsersync with server config
  7. */
  8. browserSync({
  9. server: "app",
  10. files: ["app/*.html", "app/css/*.css"]
  11. });