🅰️
Angular CLI の分析データを収集しない
概要
Angular CLI の分析データを収集しないように設定して、次の選択肢が表示されないようにします。
? Would you like to share anonymous usage data with the Angular Team at Google under
Google’s Privacy Policy at https://policies.google.com/privacy? For more details and
how to change this setting, see https://angular.io/analytics.
設定方法
Angular workspace
CLI configuration options の analytics に false を設定します。
angular.json
"cli": {
"analytics": false
}
Devcontainer
Devcontainer を使用している場合は環境変数 NG_CLI_ANALYTICS に false を設定します。
.devcontainer/Dockerfile
# Angular CLI の分析データを収集しない
ENV NG_CLI_ANALYTICS="false"
Discussion