当我这样做时ng serve
,日志显示如下错误:
Error from chokidar (/PATH_OF_MY_PROJECT/node_modules/ionicons/dist/ionicons/svg): Error: ENOSPC: System limit for number of file watchers reached, watch '/PATH_OF_MY_PROJECT/node_modules/ionicons/dist/ionicons/svg/ios-subway.svg'
我读到解决方案是在 Linux 上更改观察者文件,但这是一个糟糕的解决方案!
为什么 Angular 需要查看对 的更改node_modules
?这是一个不会改变的文件夹。如果我需要安装一个新库,我可以重新启动服务器。
如果您的解决方案是,请不要回答我:
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf
。我不想使用这个糟糕的解决方案。