connect.js 207 B

123456789101112131415
  1. 'use strict';
  2. module.exports = function(grunt) {
  3. return {
  4. docs: {
  5. options: {
  6. hostname: "*",
  7. port: 1919,
  8. base: 'docs/_build',
  9. livereload: true
  10. }
  11. }
  12. }
  13. }