Updated package.json to Node 20 and now I can't get even previously deployable functions to deploy.

Custom Code

I've been deploying functions left and right until the forced update and now I can't get anything to deploy except for a simple hello world function.

What have you tried so far?

const functions = require('firebase-functions');

const admin = require('firebase-admin');

// To avoid deployment errors, do not call admin.initializeApp() in your code

exports.helloWorld = functions.https.onRequest((req, res) => {

res.send("Hello World from FlutterFlow!");

});

^^^ this is all that I've gotten to work since.

Did you check FlutterFlow's Documentation for this topic?
Yes
1