This commit is contained in:
Hakim El Hattab 2013-09-14 11:24:20 -04:00
commit 73bfb87ed1
1 changed files with 2 additions and 2 deletions

View File

@ -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: '.'
}
}