Skip to content

Instantly share code, notes, and snippets.

@thmsbkkr
Created April 2, 2016 00:02
Show Gist options
  • Save thmsbkkr/2a3b7221f4b4444f6b9c90035317c433 to your computer and use it in GitHub Desktop.
Save thmsbkkr/2a3b7221f4b4444f6b9c90035317c433 to your computer and use it in GitHub Desktop.
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