12 lines
200 B
JavaScript
Raw Normal View History

2019-11-26 14:50:43 -08:00
/**
* Require Browsersync
*/
var browserSync = require('browser-sync');
/**
* Run Browsersync with server config
*/
browserSync({
server: "app",
files: ["app/*.html", "app/css/*.css"]
});