
コーディング

firebase cloud functions 無料プランについて
<p>firebaseの無料プランで学習用にcloud functionの設定をしている際、</p><pre><code>firebase deploy</code></pre><p>すると、</p><pre><code>Error: Cloud Functions deployment requires the pay-as-you-go (Blaze) billing plan. To upgrade your project, visit the following URL:</code></pre><p><br>と有料プランにしないと、使えないよと言われます。<br>対策としては、<br>functionsフォルダのpackage.jsonの下記部分を</p><pre><code> "engines": {
"node": "10"
},</code></pre><p><br></p><pre><code> "engines": {
"node": "8"
},</code></pre><p><br>に変更することで、2021-03-15までは使えるようです。</p>