Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 912 Bytes

TROUBLESHOOT.md

File metadata and controls

31 lines (21 loc) · 912 Bytes

TROUBLESHOOT

Install fails

This repo uses the official but experimental corepack to select the correct package manager to use. Just enable it, then run install

corepack enable
yarn install

PS: Same applies to docker. For vercel just add ENABLE_EXPERIMENTAL_COREPACK=1 to your vercel env.

Development

Limit of file watchers reached

Error: ENOSPC: System limit for number of file watchers reached Stackoverflow answer

# insert the new value into the system config
echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p

# check that the new value was applied
cat /proc/sys/fs/inotify/max_user_watches

# config variable name (not runnable)
fs.inotify.max_user_watches=524288