Announcements
This site is in read only until July 22 as we migrate to a new platform; refer to this community post for more details.
Get hands-on experience with 20+ free Google Cloud products and $300 in free credit for new customers.

Firebase Deploy Issues

Hello Community !

I have been using NodeJs and trying to deploy to firebase function. It worked yesterday. I deleted once but today its not updating anymore. Here are the screenshots. It shows deploy complete but not showing in firebase functions. I am new to this and any help would be really appreciated !

Screenshot 2023-06-20 at 1.52.33 PM.pngScreenshot 2023-06-20 at 1.52.48 PM.png

0 1 1,966
1 REPLY 1

anjelisa
Former Googler

Hi @Rifad,

If you have deployed Firebase Functions but cannot see them in the Firebase Functions dashboard, there could be a few possible reasons for this:

Caching: The Firebase Functions dashboard might be caching the function's information, including its deletion. In this case, refreshing the dashboard or clearing your browser cache might help. 

Delay in Dashboard Update: Sometimes, there can be a delay between deploying Firebase Functions and seeing them appear in the Firebase Functions dashboard. This delay can vary, but typically functions should appear within a few minutes. Make sure to refresh the dashboard and check again after a short period of time.

Index.js file: Make sure you export the function in your index.js file.

exports.yourFunction = functions.https.onRequest((req, res) => {
// Your enter code here
}

Refer to this related issue. If you are still encountering error/problem, you may want to seek assistance from Firebase Support, as they can provide more specific guidance based on your configuration and setup.

Top Solution Authors