How can you serve your Angular application locally using Angular CLI?

  • ng build
  • ng run
  • ng serve
  • ng start
To serve your Angular application locally during development, you should use the ng serve command. This command compiles your application, starts a development server, and opens it in a web browser. It also provides features like automatic reloading when you make code changes.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *