Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(config): gets errors about
@vue/cli
and prettier
Error: - If these packages are not installed globally you get an error in the terminal. `sh: 1: vue-cli-service: not found` `sh: 1: prettier: not found` `Volta error: Could not locate executable 'prettier' in your project.` Solution: - Check the list of installed global dependencies. `npm list -g --depth=0` - Install the `@vue/cli` and `prettier` packages globally in their stable version. `npm install -g @vue/cli@5 prettier@2` - Add packages to the `globalDependencies` object to alert other developers that they are required. References: - https://cli.vuejs.org/#getting-started - https://stackoverflow.com/a/59867005
- Loading branch information