preview failed - showing node.js problems #255
-
Hello! I am not able to see a preview of my project. I have used some of the tips you suggest for such problems including uninstalling node and reinstalling it. Below is the message I get. Thanks for your help. Margaret (node:1991) UnhandledPromiseRejectionWarning: Error: ENOENT: no such file or directory, open 'config.yml' |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @MargaretNagawa. I'm afraid Quire's error messaging isn't very clear here, but that first line where it says "no such file or directory, open 'config.yml'" is an indicator that you're not in the directory/folder of the new Quire project you started. Use the So, for example, if you named your project "my-project" by running the command Let us know if that does it! |
Beta Was this translation helpful? Give feedback.
Hi @MargaretNagawa. I'm afraid Quire's error messaging isn't very clear here, but that first line where it says "no such file or directory, open 'config.yml'" is an indicator that you're not in the directory/folder of the new Quire project you started. Use the
cd
command to "change directory" into the project folder and then tryquire preview
again.So, for example, if you named your project "my-project" by running the command
quire new my-project
, you would now typecd my-project
which would move you into that project, and thenquire preview
.Let us know if that does it!