rmoliva/ockham

View on GitHub
grunt/contrib-connect.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = function(grunt) {
  
  grunt.config('connect', {  
    server: {
      options: {
        port: 4000,
        base: '.',
        keepalive: true,
        hostname: '0.0.0.0', // here
      }
    }
  });
  
  grunt.loadNpmTasks('grunt-contrib-connect');
};