2013-10-13 39 views
1

我已經閱讀了這個問題Gruntjs: Fatal error: getaddrinfo ENOTFOUND咕嚕:致命錯誤:的getaddrinfo ENOTFOUND

但它不會對我的工作。

我的gruntfile使用localhost作爲hostname就像yeoman yo backbone的默認值一樣。這裏是我的gruntfile: http://pastebin.com/1T9vaUVV

無論我用grunt connectgrunt server我的終端總是返回Fatal error: getaddrinfo ENOTFOUND。這裏是我的終端輸出:http://pastebin.com/fSGr2qvE

有沒有人有解決方案?謝謝.. :)

回答

2

嘗試使用'0.0.0.0'作爲主機名,而不是;像這樣:

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