lunaisadev-website-old/node_modules/bs-recipes/recipes/server/app.js
2021-07-27 18:40:12 -07:00

12 lines
No EOL
200 B
JavaScript

/**
* Require Browsersync
*/
var browserSync = require('browser-sync');
/**
* Run Browsersync with server config
*/
browserSync({
server: "app",
files: ["app/*.html", "app/css/*.css"]
});