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.
Updated package.json to Node 20 and now I can't get even previously deployable functions to deploy.
Custom Code
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.
Yes
1