Skip to content

Instantly share code, notes, and snippets.

@HeikoMamerow
Created July 31, 2017 11:00
Embed
What would you like to do?
#!/usr/bin/env node
var bs = require('browser-sync').create();
bs.init({
proxy: {
target: 'https://localhost'
},
files: [
'build/**/*',
],
notify: false,
open: false,
reloadOnRestart: true,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment