I'm creating serverless httptrigger function in azure. And then I execute the function by http get call.
My function executes just fine. But if during runtime there is too many data loaded then I get JavaScript heap out of memory
error.
In my local env if I get the issue I can increase the heap size by the command
NODE_OPTIONS=--max-old-space-size=4096
But how I can do the same in the azure environment? Is there any way to connect the azure environment by command line? Or in the azure UI do we have any option to set up the heap size for azure env?