Angular - Fundamentals
You want to run your Angular app on port 4500, open the browser automatically, and ensure the app reloads live on code changes. Which command achieves all this correctly?
ng serve enables live reload by default, so no extra flag is needed.-p 4500 and -o correctly set port and open browser.--live-reload=false which disables automatic reloading on code changes. Only A relies on the default behavior to ensure live reloads.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions