Skip to content

Commit

Permalink
Merge pull request #104 from brown-ccv/ref-troubleshooting
Browse files Browse the repository at this point in the history
ref(troubleshooting): Add steps for re-setting the node_modules
  • Loading branch information
RobertGemmaJr authored Mar 1, 2024
2 parents 0bc9211 + e81ae85 commit f829485
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion docs/troubleshooting.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,11 @@ If you're using `zsh`, also add to your `~/.zshrc` file.

### NPM Errors

Try deleting your `node_modules` folder and the `package-lock.json` then running `npm install` then `npm run rebuild`. This should fix most issues.
Most npm issues can be resolved by re-installing dependencies. This can be done by running the following commands in the root directory of the project:

1. Delete the `node_modules/` folder
2. Delete hte `package-lock.json` file
3. Reinstall dependencies
```shell
npm install
```

0 comments on commit f829485

Please sign in to comment.