(keepalive)
| 7 | |
| 8 | // Helper function |
| 9 | var serverConfig = function(keepalive){ |
| 10 | if(keepalive==undefined) |
| 11 | keepalive = true; |
| 12 | return { |
| 13 | options: { |
| 14 | port: 8080, |
| 15 | base: ".", |
| 16 | keepalive: keepalive |
| 17 | } |
| 18 | }; |
| 19 | }; |
| 20 | |
| 21 | module.exports = function(grunt) { |
| 22 | //Initializing the configuration object |