It does not appear to be downloading these packages.
I do not like this default bower_components folder. Here is how I use it:
I have a .bowerrc file that says where the assets should be located:
{ "directory": "public/assets/vendor" }
I ran
bower init
And every time I install something:
bower install jquery -S
Download, install and add them to the bower.json file:
{ "name": "MySite", "dependencies": { "jquery": "~2.0.3", "bootstrap": "~3.0.3", "font-awesome": "~4.0.3", "datatables": "~1.9.4" } }
I am sure the files have been downloaded and installed:
ls -la public/assets/vendor
Then I just need to create my routes using:
{{ HTML::style('assets/vendor/bootstrap/dist/css/bootstrap.min.css') }} {{ HTML::style('assets/vendor/font-awesome/css/font-awesome.min.css') }} {{ HTML::script('assets/vendor/jquery/jquery.min.js') }}
I really donβt really understand permissions, because files should be easily read by the web server, and they usually are.
source share