Answers for "ng serve with different port"

2

how to use another port in angular

ng serve --port 4300
Posted by: Guest on February-27-2021
5

angular ng serve with custom port

ng serve --port 4401
Posted by: Guest on September-14-2020
0

make angular to run on a different port

"projects": {
    "my-cool-project": {
        ... rest of project config omitted
        "architect": {
            "serve": {
                "options": {
                    "port": 1337
                }
            }
        }
    }
}
Posted by: Guest on May-09-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language