Reactプロジェクトで
npm run dev
コマンドを実行した際に、
下記エラー
プロジェクト名
sh: vite: command not found
npm ERR! code ELIFECYCLE
npm ERR! syscall spawn
npm ERR! file sh
npm ERR! errno ENOENT
npm ERR! react-output-router-ts@0.0.0 dev: `vite`
npm ERR! spawn ENOENT
npm ERR!
npm ERR! Failed at the react-output-router-ts@0.0.0 dev script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm WARN Local package.json exists, but node_modules missing, did you mean to install?
が表示されたので解決策コマンドを記述します。
結論npmとmodulesの依存関係のエラーなので、
//時々バグがあるのでnpmを更新
npm install -g npm@latest
//既存のモジュールを削除
rm -rf node_modules
//プロジェクトの依存関係を再インストール
npm install
コマンドを実行で解決します!!