Top

FAQs

Q. Facing Issues while installing and using dependencies ?


Ans. If you are facing this issues, then you might be running the older version of node, we recommend that you upgrade your node version and try running the project again.


Q. If you faces System limit for number of file watchers reached, watch like error


Ans. Try the below given command

sudo sysctl fs.inotify.max_user_watches=524288  

Q. Getting the error -> Heap out of memory?


Ans. Run the following command in the terminal. Use the first command if you are a linux user and second command if you are windows user.


For Linux

NODE_OPTIONS=--max_old_space_size=4096 

For Windows

set NODE_OPTIONS=--max_old_space_size=4096 npm run build  

Q. facing Issues with cache?


Ans. Follow the below Given Setps

Run this command first


Q. If you faces System limit for number of file watchers reached, watch like error


Ans. Try the below given command

npm cache clean --force  

If still you are facing the same issue:

remove node_module and
package-lock and
run npm i again