外部リポジトリクローン後(git clone)、起動までに以下のエラーでハマってしまったので
忘れないうちに。
C:>yarn dev
yarn run v1.22.21
$ next dev
'next' は、内部コマンドまたは外部コマンド、
操作可能なプログラムまたはバッチ ファイルとして認識されていません。
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
公式サイトを参考に以下のコマンドを実行し起動が出来ました。
https://nextjs.org/docs/getting-started/installation
npm install next@latest react@latest react-dom@latest
必要コンポーネントが不足していたかなと。
宜しければご参考に!