Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,114 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
My "azure functions" is failing to detect a v4 Azure function app without me having to include a function.json file. Is this correct behaviour? I expect that I dont have to include a function.json file since the bindings are now set in my index file as follows:
app.http("dueDiligenceHttpTrigger", {
methods: ["GET", "POST"],
authLevel: "anonymous",
handler: dueDiligenceHttpTrigger,
});