Caleb Macdonald Black
Caleb Macdonald Black

Reputation: 1582

How to build to another folder using angularCLI

I have an anguar2 project inside of an ASP.NET Core application on Mac using Visual studio code. How do I have it build to a different folder for example:

ng build -output="../aspnetcoreapp/wwwroot/"

Upvotes: 0

Views: 508

Answers (1)

Yuri
Yuri

Reputation: 4498

You can use the CLI this way: ng build --output-path ../aspnetcoreapp/wwwroot/

There is a complete list of all available commands accessible via: ng help

Upvotes: 2

Related Questions