Bower calls blocked by corporate proxy

前端 未结 16 1232
夕颜
夕颜 2020-11-30 20:00

I\'m trying to use Bower for a web app, but find myself hitting some sort of proxy issues:

D:\\>bower search jquery
bower retry         Request to https:/         


        
16条回答
  •  北海茫月
    2020-11-30 20:56

    you can try suggest @thebignet into same issue on GitHub

    Set proxy, https-proxy and strict-ssl configuration into .bowerrc File :

    {
      "proxy"       : "http://:",
      "https-proxy" : "http://:",
      "strict-ssl"  : false
    } 
    

    But you must run Command from terminal:

    git config --global url."https://".insteadOf git://
    

提交回复
热议问题