Welcome to Microsoft Q&A! Thanks for posting the question.
Are you referring to "WEBSITE_NODE_DEFAULT_VERSION" (not website_node_version) setting used in azure functions?
If yes, For Windows function apps, target the version in Azure by setting the WEBSITE_NODE_DEFAULT_VERSION app setting to a supported LTS version, such as ~14.
You can refer to this document for more details on different node versions. This property sets the version of Node.js to use when running your function app on Windows and you can set to any of the supported version as per your function app Node.js targetting version.
Update:
As per our private discussion, your function doesn't have node.js code and if we create a new function with nod.js then only WEBSITE_NODE_DEFAULT_VERSION is created by default. As your function is not created with node.js and if you are not using this application setting explicitly in your code then you can remove this property from your function app.