UNPKG

magnolia-frontend-scripts

Version:

collection of gulp-scripts for building magnolia frontends

14 lines (11 loc) 267 B
const browserSync = require('browser-sync'); const sync = (done) => { browserSync.init(null, { proxy: 'localhost:3000', browser: 'google chrome', port: 7000, open: false }); done(); }; module.exports = sync;