mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-23 18:00:00 +00:00
12 lines
200 B
JavaScript
12 lines
200 B
JavaScript
/**
|
|
* Require Browsersync
|
|
*/
|
|
var browserSync = require('browser-sync');
|
|
|
|
/**
|
|
* Run Browsersync with server config
|
|
*/
|
|
browserSync({
|
|
server: "app",
|
|
files: ["app/*.html", "app/css/*.css"]
|
|
}); |