From 3cb7ca103ae6cfdcbe2b0721820c109db5cefac5 Mon Sep 17 00:00:00 2001 From: AJ Danelz Date: Thu, 4 Jan 2024 14:05:53 -0500 Subject: [PATCH] add nvm to install instruction (#163) --- src/tutorials/todo-app/build.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tutorials/todo-app/build.md b/src/tutorials/todo-app/build.md index 95236f25..775d71cc 100644 --- a/src/tutorials/todo-app/build.md +++ b/src/tutorials/todo-app/build.md @@ -647,6 +647,7 @@ Next, you will build the `Todo` app that's implemented using [VueJs](https://vue ```bash:no-line-numbers git clone https://github.com/aklivity/todo-app && \ cd todo-app && \ +nvm install && nvm use \ npm install && \ npm run build && \ cd ..