Stop angular cli asking for collecting analytics when I use ng build

前端 未结 7 1449
青春惊慌失措
青春惊慌失措 2020-12-29 21:05

Angluar CLI is asking the following question when I am trying to build and deploy my project using gitlab CI/CD:

7条回答
  •  天涯浪人
    2020-12-29 21:30

    For circle CI, this worked for me:

    - run:
        environment:
          NG_CLI_ANALYTICS: "ci"
        command: npm install
    

提交回复
热议问题