1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【vercel】Next.jsプロジェクトのデプロイに失敗する

Last updated at Posted at 2024-09-09

事象

Next.jsのチュートリアルにしたがってプロジェクトを作成し、 Vercel に連携させデプロイしようとしたところ、下記エラーが発生し、ビルドに失敗してしまいました。

No Next.js version could be detected in your project. Make sure `"next"` is installed in "dependencies" or "devDependencies"

原因

ルートディレクトリで設定したパスの直下にpackage.jsonがなかったことが原因でした。

image.png
image.png

対応方法

設定画面からルートディレクトリを修正して再デプロイを行います。

  1. srtting > general からルートディレクトリを修正します。
    このとき、入力値はフォルダ名を設定します。
    image.png

  2. Deploymentsに戻り、「・・・」を押下して「redeploy」を選択します。
    image.png

  3. デプロイが成功しました。
    image.png

参考

Qiita - 【エラー解決】No Next.js version could be detected in your project. Make sure "next" is installed in "dependencies" or "devDependencies"
stack overflow - No Next.js version could be detected in your project. Make sure "next" is installed in "dependencies" or "devDependencies"

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?