Skip to content

Instantly share code, notes, and snippets.

@ikushlianski
Created April 25, 2019 21:23
Show Gist options
  • Save ikushlianski/a3de6d6fe3ed389e3878cb76829e8f4e to your computer and use it in GitHub Desktop.
Save ikushlianski/a3de6d6fe3ed389e3878cb76829e8f4e to your computer and use it in GitHub Desktop.
We can run our webpack-dev-server and listen to localhost:8080 with gulp's browserSync
const gulp = require('gulp');
const browserSync = require('browser-sync');
gulp.task('mobile', function() {
browserSync({
proxy: 'localhost:8080',
open: false,
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment