bower install self_signed_cert_in_chain

后端 未结 5 424
醉话见心
醉话见心 2021-02-01 15:18

I am building a angular app in windows, using git bash, so far I have been able to scaffold using yo, no issues, however when I am trying to issue the following command. Can som

5条回答
  •  佛祖请我去吃肉
    2021-02-01 15:37

    It finally worked for me. These are the steps I took:

    1. Uninstall bower from npm npm uninstall bower or npm uninstall -g bower
    2. Install bower-canary from npm npm install bower-canary or npm install -g bower-canary
    3. Create .bowerrc in your project directory with the following content to turn off SSL:
    { "strict-ssl": false,  "https-proxy": "" }
    
    1. Then try again bower install angular-bootstrap

提交回复
热议问题