In the NodeJs environment, the body-parser was set to 1MB, this change makes it configurable with an env variable.
12 lines
241 B
JavaScript
12 lines
241 B
JavaScript
const process = require("process");
|
|
|
|
module.exports = async function (context) {
|
|
let message =
|
|
"BODY_PARSER_LIMIT received from env variable " +
|
|
process.env.BODY_PARSER_LIMIT;
|
|
return {
|
|
status: 200,
|
|
body: message,
|
|
};
|
|
};
|