0
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 3 years have passed since last update.

日記(エラー解決)

Posted at

ポートフォリオ製作中に必ずエラーに遭遇しました。
全然大したことないかもしれないですが、アウトプットがてら投稿します。

##変数名is not a function
日本語に訳すと変数名は関数じゃないよという意味
その時私は変数名の隣に()をつけてました。
()をつけると関数扱いになるのでエラーが出ました。

##Your API key is invalid, please check you have copied it correctly.
これはAPIKEYが無効ですという意味。
plugins/firebase.jsにプロジェクトにアクセスするための設定を
記述するのですが、その時


const config = {
projectId: process.env.FIREBASE_PROJECT_ID,
apiKey: process.env.FIREBASE_API_KEY
};

記述するはずのapiKey: process.env.FIREBASE_API_KEYを記述し忘れました。たったのこれだけですがかなり迷いました。

そんなこんなで思ったのがエラーからは逃げてはいけない。現場に入ったら一日中エラーと戦わなければいけないのでこんなところでへこたれている場合ではないと思いました。これからも立ち向かっていきます。

0
0
1

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
0
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?