angular-cliで開発サーバーのポート番号変更
2816 ワード
確認した環境
$ ng --version
@angular/cli: 1.3.0
node: 8.1.3
os: darwin x64
上記バージョンのangular-cliで作成した、angularプロジェクトが対象です。
変更する
.angular-cli.json
のdefaults->serve->portの項目を編集します。
angular-cliで作成した直後の状態だと項目自体がないので、追加します。
下記の例では、デフォルトの4200から4201に変更しています。
変更前
.angular-cli.json
...
"defaults": {
"styleExt": "css",
"component": {}
}
}
変更後
.angular-cli.json
...
"defaults": {
"styleExt": "css",
"component": {},
"serve": {
"port": 4201
}
}
}
確認
$ ng serve
次のように、変更したポート番号で開発サーバーが起動していることが確認出来ると思います。
Author And Source
この問題について(angular-cliで開発サーバーのポート番号変更), 我々は、より多くの情報をここで見つけました https://qiita.com/daikiojm/items/f8cf744a2c860bc4040e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .