Home > database >  Firebase Error: Failed to fetch Run service undefined
Firebase Error: Failed to fetch Run service undefined

Time:12-16

I am trying to deploy the firebase functions and getting the error: Error: Failed to fetch Run service undefined.

I've already tried to update firebase-tools, but it did not help. Could you please help to resolve it?

CodePudding user response:

I had the same issue. Make sure that firebase-tools is actually updated. Try firebase --version and see if it is v11.18.0

I had firebase installed with pnpm globally, so npm update did not actually update the correct package.

CodePudding user response:

I had same error in windows 10. firebase deploy --only functions

v11.18.0 has fixed the error.

npm install -g firebase-tools --force

npm audit fix

  • Related