From a8ca26f6504b8a4318b1c6cf83fa8b659c052ba6 Mon Sep 17 00:00:00 2001 From: nakatani-yo Date: Mon, 22 Jun 2026 23:14:14 +0900 Subject: [PATCH] docs(devcontainer): update documented Node version to 22 Assisted-by: Codex:GPT-5 Signed-off-by: nakatani-yo --- .devcontainer/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/README.md b/.devcontainer/README.md index 8f497720f3886..41a3449cab7b1 100644 --- a/.devcontainer/README.md +++ b/.devcontainer/README.md @@ -46,7 +46,7 @@ Everything else (like building the application, adjusting files, ...) should be ## NodeJs and NVM -The container comes with [`nvm`](https://github.com/nvm-sh/nvm) and Node 16 installed. This should be sufficient to +The container comes with [`nvm`](https://github.com/nvm-sh/nvm) and Node 22 installed. This should be sufficient to build Nextcloud Core sources via `make`. If you need a different Node Version (for example for app development), you can easily switch between different versions by running: @@ -58,8 +58,8 @@ nvm use 14 # Check version node -v -# Switch back to Node 16 -nvm use 16 +# Switch back to Node 22 +nvm use 22 # Check version node -v