tatianamac 6d5445ecc5 update
2019-11-26 14:50:43 -08:00

14 lines
348 B
JavaScript

/**
* Require Browsersync
*/
var browserSync = require('browser-sync').create();
var historyApiFallback = require('connect-history-api-fallback')
/**
* Run Browsersync with server config
*/
browserSync.init({
server: "app",
files: ["app/*.html", "app/css/*.css"],
middleware: [require("connect-logger")(), historyApiFallback()]
});