biofriction-wp-theme/node_modules/bs-recipes/recipes/server/app.js

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"]
});