我正在学习graphql并prisma- binding用于graphql操作。我在nodemon启动节点服务器时遇到了此错误,它为我提供了模式文件的路径,该文件由a自动生成graphql- cli。谁能告诉我这个错误是什么意思?
graphql
prisma- binding
nodemon
graphql- cli
错误:
Internal watch failed: ENOSPC: System limit for number of file watchers reached, watch '/media/rehan-sattar/Development/All projects/GrpahQl/graph-ql-course/graphql-prisma/src/generated
如果您使用的是Linux,则您的项目已达到系统文件查看器的限制
要解决此问题,请在您的终端上尝试:
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p