This problem begun suddenly. I can`t deploy anything now. Allways same issue. I use simple example with helloWorld:
const functions = require("firebase-functions");
// const logger = require("firebase-functions/lib/logger");
exports.helloWorld = functions.region("europe-west3")
.https.onRequest((request, response) => {
// logger.info("Hello logs!", {structuredData: true});
response.send("Hello from Firebase!");
});
And still the same issue.
I have around 15 cloud functions in thi project so far, so dont really know where the issue comes from.... Anyone faced this before?
I deployed same function in another project with sucess...