Opal-Estate-Pro/node_modules/bs-recipes/recipes/server/app.js

12 lines
200 B
JavaScript
Raw Normal View History

2019-09-13 04:44:33 +02:00
/**
* Require Browsersync
*/
var browserSync = require('browser-sync');
/**
* Run Browsersync with server config
*/
browserSync({
server: "app",
files: ["app/*.html", "app/css/*.css"]
});