HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

ng deploy — Invoke the deploy builder for a project in the workspace. Note: Deployment requires setup via `ng ad

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandinvokeng deployclibuilderdeployfor

Problem

How to use the ng deploy command: Invoke the deploy builder for a project in the workspace. Note: Deployment requires setup via ng add. More information: <https://angular.dev/cli/deploy>.

Solution

ng deploy — Invoke the deploy builder for a project in the workspace. Note: Deployment requires setup via ng add. More information: <https://angular.dev/cli/deploy>.

Deploy the default project:
ng deploy


Deploy a specific project:
ng deploy {{project_name}}


Deploy using a specific configuration:
ng deploy {{[-c|--configuration]}} {{development|production|...}}

Code Snippets

Deploy the default project

ng deploy

Deploy a specific project

ng deploy {{project_name}}

Deploy using a specific configuration

ng deploy {{[-c|--configuration]}} {{development|production|...}}

Context

tldr-pages: common/ng deploy

Revisions (0)

No revisions yet.