From c2af06e0a12529a5c3d1a09024ccc1fabf4e5604 Mon Sep 17 00:00:00 2001 From: Abdur Rehman Date: Sat, 5 Oct 2024 17:16:00 +0500 Subject: [PATCH] docs(angular) : add cd instruction to move inside workspace directory (#28135) `npx nx serve angular-store` this would not work if the user does not move to the directory first. ## Current Behavior ## Expected Behavior ## Related Issue(s) Fixes # Co-authored-by: Isaac Mann --- docs/shared/tutorials/angular-monorepo.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/shared/tutorials/angular-monorepo.md b/docs/shared/tutorials/angular-monorepo.md index da52f643e9..ef57539c1e 100644 --- a/docs/shared/tutorials/angular-monorepo.md +++ b/docs/shared/tutorials/angular-monorepo.md @@ -118,6 +118,7 @@ The [`nx.json` file](/reference/nx-json) contains configuration settings for Nx To serve your new Angular application, just run: ```shell +cd angular-monorepo npx nx serve angular-store ```