how to change port in angular code example
Example 1: how to assign port in angular
ng serve --port 4401
Example 2: how to change port in flask app
if __name__ == "__main__":
app.run(host='127.0.0.1', port=5002)
Example 3: angular cli change serve port
"projects": {
"my-cool-project": {
... rest of project config omitted
"architect": {
"serve": {
"options": {
"port": 1337
}
}
}
}
}