Skip to content

Instantly share code, notes, and snippets.

@qasimalyas
Created September 10, 2013 21:03
Show Gist options
  • Save qasimalyas/6515656 to your computer and use it in GitHub Desktop.
Save qasimalyas/6515656 to your computer and use it in GitHub Desktop.
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
jekyll: {
server: {
server: true,
auto: true
}
}
});
grunt.loadNpmTasks('grunt-jekyll');
// Default task(s).
grunt.registerTask('default', ['jekyll']);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment