Reputation: 9
$ ionic start test1 blank
√ Creating directory .\test1 - done!
[INFO] Fetching app base
(https://github.com/ionic-team/ionic2-app-base/archive/master.tar.gz)
× Downloading - failed!
Error: self signed certificate in certificate chain
Any help would be appreciated.
Upvotes: 0
Views: 222
Reputation: 4099
Run command
npm config set strict-ssl false
before
ionic start
Upvotes: 0
Reputation: 2636
try this
git config --global http.sslVerify false
or this
env export NODE_TLS_REJECT_UNAUTHORIZED=0
Upvotes: 1