In node.js, how to change bower’s default component folder i.e. need to install the components in a different folder other than components folder.?
Create a Bower configuration file .bowerrc in the project root (as opposed to your home directory) with the content:
{
“directory” : “public/components”
}
Run bower install again.