SELF_SIGNED_CERT_IN_CHAIN error when installing bower components
Asked Answered
E

1

5

Error while installing bower components, the following error is thrown

Request to https://bower.herokuapp.com/packages/ember failed: SELF_SIGNED_CERT_IN_CHAIN. 
Embryogeny answered 26/3, 2015 at 7:11 Comment(0)
E
13

You may get this error if your are behind a proxy or secure connection

Goto project root folder and open .bowerrc file and add the line

"strict-ssl": false

Example .bowerrc file

{

    "directory": "bower_components",
    "analytics": false,
    "strict-ssl": false
} 

and from the project root folder do a bower install as follows

bower install
Embryogeny answered 26/3, 2015 at 7:11 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.