1234567891011121314151617181920 |
- /**
- * Require Browsersync
- */
- var bs = require('browser-sync').create();
- /**
- * Run Browsersync with server config
- */
- bs.init({
- server: "app",
- files: ["app/css/*.css"],
- plugins: [
- {
- module: "bs-html-injector",
- options: {
- files: ["app/*.html"]
- }
- }
- ]
- });
|