2
1

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.

Nuxt.jsの環境構築時にエラーが出た時の対処方法

Last updated at Posted at 2022-11-24

はじめに

会社の環境でnpm installするとエラーが出てしまう場合があると思います。
自宅環境とは違い、プロキシやら証明書の関係でエラーが発生してしまいます。
ここではその対処方法を備忘録として残しておこうと思います。

発生事象① UNABLE_TO_VERIFY_LEAF_SIGNATURE

例えば、npm install -g yarnを実行すると以下のエラーが出たりします。

npm install -g yarn
npm ERR! code UNABLE_TO_VERIFY_LEAF_SIGNATURE

対処方法①

以下のコマンドでSSLのチェックを無効にします。

npm config set strict-ssl false

発生事象② unable to verify the first certificate

例えば、yarn create nuxt-app testVueを実行すると以下のエラーが出たりします。

unable to verify the first certificate

対処方法②

以下のコマンドでTLS接続の証明書検証を無効化します。

set "NODE_TLS_REJECT_UNAUTHORIZED=0"
2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?