From eb654356a4b2969b00c16928de44859cec9448a3 Mon Sep 17 00:00:00 2001 From: thomas Date: Tue, 24 Oct 2023 15:12:58 +0200 Subject: [PATCH] feat(docs): add a FAQ section --- docs/src/content/docs/guides/faq.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 docs/src/content/docs/guides/faq.md 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). + +