unable to watch for file changes解决办法

Visual Studio Code

运行过程,文件保存后热加载不起作用的解决办法

– 适用于UBUNTU下

“Visual Studio Code is unable to watch for file changes in this large workspace” (error ENOSPC)#
– 运行如下命令,查看当前系统监控的文件数量
cat /proc/sys/fs/inotify/max_user_watches

– 运行命令,编辑
sudo vi /etc/sysctl.conf

– 在文件末尾加下以下一行
fs.inotify.max_user_watches=524288

– 更新配置,使其生效。
sudo sysctl -p

你可能感兴趣的:(unable to watch for file changes解决办法)