diff --git a/docs/src/content/docs/guides/faq.md b/docs/src/content/docs/guides/faq.md new file mode 100644 index 0000000..1c2ed15 --- /dev/null +++ b/docs/src/content/docs/guides/faq.md @@ -0,0 +1,17 @@ +--- +title: FAQ +description: Answer to question +sidebar: + order: 7 +--- + +
+ Why is my application not starting, or why do I encounter errors in my terminal when I run `nx serve`? + + Most of the time, this issue arises because your node_modules are outdated, and you need to update them by running `npm ci`. + +If the installation process fails, you can resolve it by deleting your node_modules folder using the command `rm -rf node_modules` or `npx npkill` and then rerunning `npm ci`. + +If the problem persists, please report the issue [here](https://github.com/tomalaforge/angular-challenges/issues/new). + +