Troubleshooting
Solutions to common problems.
Problems updating npm packages
Delete the ./node_modules
folder, and run again:
# Choose your favorite package manager
# NPM
$ npm install
# Yarn
$ yarn
# pnpm
pnpm install
Problems with cache
Delete the temporary directories:
# Choose your favorite package manager
# NPM
$ npm run clean
# Yarn
$ yarn clean
# pnpm
pnpm run clean