Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions articles/azure-functions/functions-reference-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -1866,7 +1866,7 @@ az functionapp config appsettings set --settings WEBSITE_NODE_DEFAULT_VERSION=~
--name <FUNCTION_APP_NAME> --resource-group <RESOURCE_GROUP_NAME>
```

This sets the [`WEBSITE_NODE_DEFAULT_VERSION` application setting](./functions-app-settings.md#website_node_default_version) the supported LTS version of `~22`.
This sets the [`WEBSITE_NODE_DEFAULT_VERSION` application setting](./functions-app-settings.md#website_node_default_version) to the supported LTS version of `~20`.

# [Azure portal](#tab/azure-portal/windows)

Expand All @@ -1879,7 +1879,7 @@ Use the following steps to change the Node.js version:
Run the Azure CLI [`az functionapp config set`](/cli/azure/functionapp/config#az-functionapp-config-set) command to update the Node.js version for your function app running on Linux:

```azurecli-interactive
az functionapp config set --linux-fx-version "node|22" --name "<FUNCTION_APP_NAME>" \
az functionapp config set --linux-fx-version "node|20" --name "<FUNCTION_APP_NAME>" \
--resource-group "<RESOURCE_GROUP_NAME>"
```

Expand Down