Skip to content

Instantly share code, notes, and snippets.

@gcpantazis
Created September 8, 2014 18:48
Show Gist options
  • Save gcpantazis/91ba3e8d89b78ac5bed7 to your computer and use it in GitHub Desktop.
Save gcpantazis/91ba3e8d89b78ac5bed7 to your computer and use it in GitHub Desktop.
Gulp connect with gzip
// Connect
gulp.task('connect', $.connect.server({
root: ['dist'],
port: 9000,
livereload: true,
middleware: function() {
return [
require('connect-gzip').gzip()
];
}
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment