An Azure service that provides an event-driven serverless compute platform.
This happens because Azure Functions can’t find your function entry points your "main": "dist/src/functions/*.js" is invalid (wildcards aren’t supported), so the runtime fails to load anything.
Fix it by pointing to a single compiled entry file (e.g. "main": "dist/src/index.js") and ensure your functions are properly registered/exported from there.
If the reply is helpful, please click Accept Answer and kindly upvote it. If you have additional questions about this answer, please click Comment.