Skip to content

Instantly share code, notes, and snippets.

@joshuakemmerling
Last active October 1, 2019 01:04
Show Gist options
  • Save joshuakemmerling/9f0c755bb3608d990a59 to your computer and use it in GitHub Desktop.
Save joshuakemmerling/9f0c755bb3608d990a59 to your computer and use it in GitHub Desktop.
Grunt snippets.
module.exports = function (grunt) {
grunt.initConfig({
connect: {
server: {
options: {
port: 8080,
hostname: '*',
keepalive: true,
onCreateServer: function (server, connect, options) { },
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-connect');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment