What is causing 'grunt serve' to throw 'No Bower components found'?

后端 未结 9 2501
时光取名叫无心
时光取名叫无心 2020-12-25 09:55

I am starting out angular app with angular-fullstack in my Windows 7 box. I installed bunch of npm packages with -g options, including grunt-bower-install. I created the app

9条回答
  •  心在旅途
    2020-12-25 10:18

    Try to do bower install. If its failing saying not able to connect to git then you can change repo pointing location by simply running below command

    $ git config --global url.https://github.com/.insteadOf git://github.com/ 
    

    This will ensure that you will be downloaded over https instead of git if its causing orginasation firewall to block it.

提交回复
热议问题