diff options
author | Hakim El Hattab | 2013-09-14 11:24:20 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-09-14 11:24:20 -0400 |
commit | 73bfb87ed1152883da5fa65e476565fc77146992 (patch) | |
tree | 0ef562a8d0a32a479b51f62aec007544f5f60b11 | |
parent | a3f10e0b0fd056937962f016e2ae68ee138409bc (diff) | |
parent | b8efad0b27204dec8e9ca028a93764810c0abc6a (diff) |
Merge branch 'patch-1' of https://github.com/mrshu/reveal.js
-rw-r--r-- | Gruntfile.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 4df3181..124a78d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,6 +1,6 @@ /* global module:false */ module.exports = function(grunt) { - + var port = grunt.option('port') || 8000; // Project configuration grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), @@ -78,7 +78,7 @@ module.exports = function(grunt) { connect: { server: { options: { - port: 8000, + port: port, base: '.' } } |