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

12 lines
200 B
JavaScript
Raw Normal View History

2021-10-26 14:18:09 +02:00
/**
* Require Browsersync
*/
var browserSync = require('browser-sync');
/**
* Run Browsersync with server config
*/
browserSync({
server: "app",
files: ["app/*.html", "app/css/*.css"]
});