Created
April 2, 2016 00:02
-
-
Save thmsbkkr/2a3b7221f4b4444f6b9c90035317c433 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var elixir = require('laravel-elixir'); | |
elixir.config.css.sass.pluginOptions.includePaths = [ | |
'node_modules/bootstrap/scss', | |
]; | |
elixir(function(mix) { | |
mix.sass('app.scss') | |
.browserify('app.js') | |
.version(['css/app.css', 'js/app.js']) | |
.browserSync({ proxy: 'homestead.app' }); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment