Grunt:致命错误:getaddrinfo ENOTFOUND

时间:2013-10-13 11:36:25

标签: gruntjs yeoman

我已阅读此问题Gruntjs: Fatal error: getaddrinfo ENOTFOUND

但它对我不起作用。

我的gruntfile使用localhost作为hostname,就像默认来自yeoman yo backbone一样。这是我的gruntfile: http://pastebin.com/1T9vaUVV

无论我使用grunt connect还是grunt server我的终端始终返回Fatal error: getaddrinfo ENOTFOUND。这是我的终端输出:http://pastebin.com/fSGr2qvE

有人有解决方案吗?谢谢.. :))

1 个答案:

答案 0 :(得分:2)

尝试使用'0.0.0.0'作为主机名;像这样:

connect: {
  options: {
    base: 'app/',
    hostname: '0.0.0.0'
  }
}