From ab86d69f2f872d3c52b0979e639e640a219640b7 Mon Sep 17 00:00:00 2001 From: Kam Date: Sat, 16 May 2026 22:26:59 +0300 Subject: [PATCH] docs: link to ng new reference from installation guide The installation guide walks a developer through `ng new ` but provides no link to the `ng new` CLI reference, leaving every option the command supports undiscoverable from the install flow. Add a brief HELPFUL note pointing at the reference, with a few representative options as examples. --- adev/src/content/introduction/installation.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/adev/src/content/introduction/installation.md b/adev/src/content/introduction/installation.md index a6538b3e2c4c..3e11eb1448dd 100644 --- a/adev/src/content/introduction/installation.md +++ b/adev/src/content/introduction/installation.md @@ -68,6 +68,8 @@ In your terminal, run the CLI command `ng new` with the desired project name. In ng new ``` +HELPFUL: `ng new` supports options to configure your new project, for example `--ssr` for server-side rendering, `--style=scss` for Sass stylesheets, or `--zoneless` to opt out of `zone.js`. See the [`ng new` reference](cli/new) for all options. + You will be presented with some configuration options for your project. Use the arrow and enter keys to navigate and select which options you desire. If you don't have any preferences, just hit the enter key to take the default options and continue with the setup.