when i run grunt serve it will send msg below and server doesnt run
Running "wiredep:app" (wiredep) task Cannot find where you keep your Bower packages
I went through google found out solution to comment
wiredep: {
options: {
//cwd: '<%= yeoman.app %>'
},
app: {
src: ['<%= yeoman.app %>/index.html'],
ignorePath: /\.\.\//
},
sass: {
src: ['<%= yeoman.app %>/styles/{,*/}*.{scss,sass}'],
ignorePath: /(\.\.\/){1,2}bower_components\//
}
}
but still get same msg
thanks
I had the same issue, here's what worked in my case:
After that, grunt serve command worked perfectly. Note: maybe installing Git and running bower install would suffice in your case.
My answer follow this article: What is causing 'grunt serve' to throw 'No Bower components found'?