- Published on
firebaseのdeployエラーの対象方法 Error: Failed to get Firebase project
firebase deploy
をすると下記のようなエラーが出ました。その時の対処方法を紹介します。
Error: Failed to get Firebase project projectName. Please make sure the project exists and your account has permission to access it. error Command failed with exit code 2. info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
これは長いことログインしていなかった時に起こります。アクセストークンの期限切れによるエラーです。
そのため、下記のようにlogoutして、loginしなおせば解消できます。
firebase logout firebase login
あるいは、もっとスマートにやる方法としては、 下記のようにreauthをします。
firebase login --reauth
これで、deployできるようになります。 参考: Error: Failed to get Firebase project project-name. Please make sure the project exists and your account has permission to access it