Issue
Here is my code in package.json
"scripts": {
"ng": "ng",
"start": "ng serve --port 8080",
"build": "ng build --prod --aot",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
}
I am trying to run npm run start it is compiled successfully but the port is not running. to build FE I am using npm run build it is working fine. so please guide me on how to run angular server
Solution
run this command:
ng serve --open
Answered By - Sucharitha Suchi
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.