0
votes

I am running the following from the root of my project:

bower install --save bootstrap

it outputs the following:

bower bootstrap#*           not-cached git://github.com/twbs/bootstrap.git#*
bower bootstrap#*              resolve git://github.com/twbs/bootstrap.git#*
bower bootstrap#*             download https://github.com/twbs/bootstrap/archive/v3.2.0.tar.gz
bower bootstrap#*              extract archive.tar.gz
bower bootstrap#*             resolved git://github.com/twbs/bootstrap.git#3.2.0
bower bootstrap#~3.2.0         install bootstrap#3.2.0

But the vendor folder is still empty?

1

1 Answers

0
votes

By default bower will install the downloaded components into the bower_components directory.
You can override this behavior by declaring an alternative location in the .bowerrc file, for example:

{
  "directory": "vendor/assets/components"
}