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?

More than 1 year has passed since last update.

Vercel で Reactアプリをデプロイする際にエラーが出る

Last updated at Posted at 2022-02-27

現象

create react appで作成したReactアプリを、Vercelでデプロイしようとした際に、ローカルでは問題なくビルドできているにもかかわらず、ビルドエラーになる。
Vercelのビルドログで下記のエラーメッセージが表示される。

Treating warnings as errors because process.env.CI = true.

対処法

環境変数 CI の値が trueのため、worning が error として扱われています、ということなので。。

この環境変数をいじってよいものか、よくわからなかったのですが、下記の、Vercel のコミュニティでも同じ会話がされていたので、CIの値をfalseに上書きすることにしました。
https://github.com/vercel/community/discussions/30

Vercelの環境変数の設定はGUI上から可能です、下記を設定しデプロイを再実行したところ、エラーなく実行できるようになりました。

NAME: CI
VALUE: false

add-env-variable.png

参考

Vercelの環境変数について↓

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?