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 !
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.