Reputation: 226
I want to use Bootstrap SASS and Compass in Laravel 5.
For this, I need to install Bower and add the packages like:
bootstrap-sass-official
But I'm not finding the official Compass package for install by Bower.
Which the official Compass package to Bower?
Or it doesn't exist?
Upvotes: 1
Views: 2715
Reputation: 226
I found a good way to resolve a problem that I had before. It was the gem compass.
Once installed, there are more steps.
Install npm laravel-elixir-sass-compass
npm install laravel-elixir-sass-compass
if you are using Twitter Bootstrap, you can follow the great post down:
Setting up Laravel Elixir with Bootstrap
My final gulpfile.js:
And my app.scss:
Thanks!
Upvotes: 1