UNPKG

libcore

Version:

Kicks-start helpers for cross-browser libraries and different versions of nodejs

22 lines (16 loc) 467 B
'use strict'; var browsersync = require('rollup-plugin-browsersync'); function configure(config) { config.plugins. push(browsersync({ server: { baseDir: "dist", index: "index.html" }, port: 3000, open: false, files: ["dist/**/*.html", "dist/**/*.js"] })); } module.exports = configure;