1

我正在尝试这个包:https ://github.com/shakacode/react-webpack-rails-tutorial按照说明设置热重载。

运行项目foreman start -f Procfile.hot并刷新网页时,我在 js 包上收到 504 错误。在控制台中我得到这个:

[HPM] Error occurred while trying to proxy request /webpack/vendor-bundle-310d7ea8b116074b3610.js from localhost:3035 to http://lvh.me:3035 (ENFILE) (https://nodejs.org/api/errors.html#errors_common_system_errors)

我不确定导致此问题的项目的哪个部分,我该如何解决?

4

1 回答 1

0

你的错误是:ENFILE Too many open files in system (POSIX.1-2001). On Linux, this is probably a result of encountering the proc/sys/fs/file-max limit (see proc(5)).

这是系统错误,不是教程项目本身引起的。如果您一次打开了很多应用程序,则关闭其中一些可能会解决此错误。

于 2018-04-24T21:52:45.243 回答