Skip to content

Instantly share code, notes, and snippets.

@lwakefield
Created February 11, 2016 16:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lwakefield/3cbb6385795bc8e0e612 to your computer and use it in GitHub Desktop.
Save lwakefield/3cbb6385795bc8e0e612 to your computer and use it in GitHub Desktop.
var elixir = require('laravel-elixir');
elixir.config.assetsPath = 'src';
elixir.config.publicPath = 'dist';
elixir(function(mix) {
mix.browserSync({
files: ['**/*.html', '**/*.css', '**/*.js']
});
mix.browserify('app.js');
mix.sass('app.scss');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment